반응형
handlebars github
https://jknack.github.io/handlebars.java/
https://github.com/jknack/handlebars.java
handlebars spring boot auto-configuration
https://github.com/allegro/handlebars-spring-boot-starter
build.grade
dependencies{
implementation group: 'pl.allegro.tech.boot', name: 'handlebars-spring-boot-starter', version: '0.3.1'
}
application.yml
handlebars.suffix: .hbs
handlebars.cache: false
hbs 파일 위치
src/main/resources/templates/items/list.hbs
ItemController
public String list(Model mode){
model.addAttribute("itemName", "아이템");
return "/items/list";
}
반응형
'java' 카테고리의 다른 글
spring boot cannot find main class (0) | 2020.03.18 |
---|---|
spring boot lazy-loading 사용시 에러 (0) | 2020.01.30 |
openjdk 설치 (0) | 2018.12.10 |
log4j.xml 파일 위치 지정하기 (0) | 2018.04.18 |
java 인증서 추가 방법 (0) | 2018.04.13 |