Spring Boot에서 발견되는 다음과 같은 오류 메시지가 확인되었습니다. # 오류 WARN ion$DefaultTemplateResolverConfiguration : Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) # 해결 방법 1 오류 메시지의 내용을 확인하면 해결할 수 있는데요. project>src>main>resources>templates templates 폴더를 생성해주시거나 or 뒤에 옵션을 설정해주는 방법으로 해결할 수 있을 것 ..