스프링 부트에서 아래와 같은 메세지가 보인다면...
2018-11-19 17:44:57.150 WARN 15780 --- [ main] ion$DefaultTemplateResolverConfiguration : Cannot find template location: classpath:/templates/ (please add some templates or check your Thymeleaf configuration)
스프링 부트 스타터 중에 템플릿을 implement 하고 있으나 템플릿이 없는지 확인해보자.
예)
implementation('org.springframework.boot:spring-boot-starter-thymeleaf')
곧 템플릿을 만들 것이라면,,,
resources 밑에 templates 디렉터리를 만들고 빈 템플릿 하나를 넣어주자.
'Programing > Framework' 카테고리의 다른 글
[SpringBoot] Exception Handler에서 ResponseStatus에 reason를 적으면... (0) | 2018.11.30 |
---|---|
[SpringBoot] yml에서 Duration 사용하기는 2.1 부터 지원 (0) | 2018.11.26 |
[spring boot] spring.jpa.open-in-view ?? (0) | 2018.11.19 |
React with Spring Boot 프로젝트 구조 잡기 (0) | 2018.11.14 |
[Spring] WebMvcConfigurerAdapter가 deprecate 되었네, 해결책은? (0) | 2018.10.18 |