본문 바로가기
Tools/etc

Thymeleaf TemplateInputException 에러 해결방법

by wakestand 2022. 7. 1.
반응형

2022-06-30 23:23:37.273 ERROR 44264 --- [nio-8080-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]    : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: Error resolving template [test1], template might not exist or might not be accessible by any of the configured Template Resolvers] with root cause

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

 

스프링부트에서 Controller 호출 시

위와 같은 에러가 발생할 경우

프로젝트 내 templates 폴더에서

 

Error resolving template [test1]

강조 표시한 html 파일이 없어서

에러가 발생한 것인데

 

templates 폴더 내에

에러가 발생한 파일명을 넣어주거나

 

혹은 클래스명 위에 선언한

 

@Controller 대신

@RestController를 사용해주면 된다

(@Controller는 이동할 주소 Return)

 

반응형

댓글