본문 바로가기
카테고리 없음

application.properties 에 html 폴더 구성 가능하게 하기

by 작은소행성 2021. 11. 1.

 

 

gradle 에 추가하기

    implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
#템플릿 시작 위치 참조
spring.thymeleaf.prefix=classpath:templates/ 
#템플릿의 확장자 이름 참조
spring.thymeleaf.suffix=.html 
#해당위치에 파일이 있는지 없는지 체크
spring.thymeleaf.check-template-location=true 
#캐시를 남기지 않는다.
spring.thymeleaf.cache=false

 

 

 

 

gradle 에 추가하기

    developmentOnly 'org.springframework.boot:spring-boot-devtools'
#새로고침으로 바로 반영 가능
spring.devtools.livereload.enabled=true
반응형