FE/html

[ERROR] org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "#temporals.createDate(post.createdDate, 'yyyyMMdd')"

잔망루피 2021. 11. 26. 19:29
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

 

[스프링 부트로 게시판 만들기] 09. 게시글 CRUD

Board 테이블 만들기 게시판 정보를 담을 Board 테이블을 만들도록 하겠습니다. 폴더 구조 Board 클래스 package com.azurealstn.blogproject.domain.board; import com.azurealstn.blogproject.domain.user.User..

azurealstn.tistory.com

 

반응형