[Spring/SpringBoot] 템플릿 처리 오류-Error resolving template, template might not exist or might not be accessible by any of the configured Template Resolvers

pintegral·2022년 10월 12일
0

Spring/Spring Boot

목록 보기
7/8
post-thumbnail

Problem

HTML 템플릿 뷰가 아예 안뜨는 현상이 나타났다.

오류를 살펴보니

Error resolving template [mypage/timeline], template might not exist or might not be accessible by any of the configured Template Resolvers at org.thymeleaf

이렇게 템플릿이 존재하지 않거나(경로오류) 템플릿에 접근할 수 없다는 오류였다.

Solution

처음에는 html 파일에서만 그 원인을 찾았는데 알고보니 timeline.html 뷰 자체의 문제가 아니라 그걸 리턴하는 Controller에 있었다.
Controller 코드 중 조건문이 완성이 되지 않아서였다. (localDateTime.now().isAfter()! = false) 이 코드에서 false를 적지 않아서 였다. .

조건문을 제대로 완성해주고 나니, 제대로 작동..!

profile
문제를 끝까지 해결하려는 집념의 개발자

0개의 댓글