본문 바로가기
Error & Fix

스프링부트 template might not exist 에러 해결방법

by wakestand 2023. 1. 31.
반응형

with root cause org.thymeleaf.exceptions.TemplateInputException: Error resolving template [/경로], template might not exist or might not be accessible by any of the configured Template Resolvers

 

Controller에서 html 주소를 return 시키려다

위와 같은 에러가 발생했는데

 

경로에 해당하는 주소가 없다는 얘기인데

원인을 확인해보면

Controller에서 클래스 어노테이션을

@Controller로 설정해 놓았을 경우 발생하는 에러라

 

@Controller 에서 @RestController로 바꿔주거나

혹은 @Controller를 사용시에는

메소드 위에 @ResponseBody

어노테이션을 넣어주면 해결된다

반응형

댓글