Skip to content

Thymeleaf 에러

hyejung kim edited this page Oct 28, 2021 · 1 revision

문제상황

구글로그인 성공 시 thymeleaf 로 작성한 index.html파일이 보여져야 하는데 보여지지 않는 문제

에러 로그

2021-10-27T14:54:22.517066+00:00 app[web.1]: 2021-10-27 14:54:22.516 ERROR 4 --- [o-21857-exec-10] org.thymeleaf.TemplateEngine             : [THYMELEAF][http-nio-21857-exec-10] Exception processing template "/index": Error resolving template [/index], template might not exist or might not be accessible by any of the configured Template Resolvers

해결방법

index.html 파일을 찾지 못하는 문제로 판단

IDE에서 로컬로 실행할 때는 이상없이 html 파일을 찾아가는데, 배포된 환경에서 진행하려니 안되는 문제

UserController에 home으로 가는 return 값을 return "/index"; 에서 return "index"; 로 변경

참고

블로그1