본문 바로가기
Framework/Spring

[Spring] org.thymeleaf.exceptions.TemplateInputException

by pcm9881 2023. 5. 25.

org.thymeleaf.exceptions.TemplateInputException: Error resolving template [/page/test], template might not exist or might not be accessible by any of the configured Template Resolvers

 

내용 

IntelliJ에서 개발할 때는 문제가 없었지만 실제 서버에 배포 후 TemplateInputException이 발생이 있었습니다.

관련해서 찾아보니 내부 Spring Boot Server를 사용하거나 Tomcat을 사용할 때는 발생하지 않지만 다르게 배포를 하는 경우 ( 필자에 경우 jar 배포였음 ) 문제가 생길 수 있어서 해결방안을 공유합니다.

 

해결방안

 

기존

return "/page/test"

 

변경 후

return "page/test"

 

728x90

댓글