[트러블 슈팅] 14. template return경로 에러

편준민's avatar
Jun 10, 2025
[트러블 슈팅] 14. template return경로 에러
notion image

에러문장

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

에러코드

// loginPage @GetMapping("/login-form") public String loginForm() { return "login-form"; }

해결

💡
리턴 값이 없는 파일을 찾고 있엇다. login-formuser폴더 안에 있는데 위에 코드는 template아래 있는 login-form을 찾고 있는 코드이기 때문에 오류가 났다. 그래서 경로를 user/login-form으로 변경해주었다.
// loginPage @GetMapping("/login-form") public String loginForm() { return "user/login-form"; }
 
Share article

YunSeolAn