org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "#temporals.createDate(post.createdDate, 'yyyyMMdd')"
java.time.format.DateTimeParseException: Text '21. 11. 25. 오후 7:32' could not be parsed at index 0
에러 로그
✨ 해결
<td th:text="${#temporals.format(post.createdDate, 'yyyy-MM-dd')}"></td>
작성일자를 출력한다.
"#temporals.createDate(post.createdDate, 'yyyyMMdd')"을 위와 같이 고쳤다.
참고 👉
https://azurealstn.tistory.com/93
반응형
'FE > html' 카테고리의 다른 글
[Thymeleaf Error] EL1007E: Property or field 'name' cannot be found on null (0) | 2021.12.29 |
---|---|
[CSS] pagination과 버튼 나란히 두기 (0) | 2021.12.02 |
form을 submit하는 3가지 태그(button, a, input) (0) | 2021.11.24 |
[Thymeleaf] 로그인, 로그아웃 버튼 (0) | 2021.11.19 |
[Error] Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; (0) | 2021.08.05 |