Blame view

src/main/resources/application.properties 524 Bytes
a6468920   sangkiham   Spring Boot Board...
1
  # profiles 설정
a01d5c18   sangkiham   .
2
  spring.profiles.active=dev
a6468920   sangkiham   Spring Boot Board...
3
4
5
6
7
8
9
10
11
12
  
  # 정적 리소스에 변화가 있을  바로 반영한다. 
  spring.devtools.livereload.enabled=true
  # thymeleaf 참조 경로 
  spring.thymeleaf.prefix=classpath:/templates/
  spring.thymeleaf.suffix=.html
  # thymeleaf에 대한 캐시를 남기지 않는다.cache=false 설정(운영시는 true) 
  spring.thymeleaf.cache=false
  # templates 디렉토리에 파일이 있는지 없는지 체크, 없으면 에러를 발생시킨다. 
  spring.thymeleaf.check-template-location=true