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
'Framework > Spring' 카테고리의 다른 글
Executing an update/delete query; nested exception is javax.persistence.TransactionRequiredException (0) | 2023.06.12 |
---|---|
[Spring] MySQL 연동 (JPA, application.properties) (0) | 2023.06.02 |
[Spring] Web Project 시작하기 STEP 1 (0) | 2023.05.15 |
[Spring] 트랜잭션 전파 규칙 (Transaction Propagation Behaviors) (0) | 2023.04.21 |
[Spring] Spring 버전별 시스템 요구사항 확인하기 (0) | 2023.01.31 |
댓글