Server

thymeleaf 날짜 데이터 출력하기

클레인 2019. 3. 23.
반응형

thymeleaf 날짜 데이터를 출력하는 법을 찾아보았다.

요새는 대부분 LocalDateTime 을 점차 사용하는 추세인거 같은데

이럴 경우는 기존에 #date , #calendars 를 사용하는 대신 #temporals.format 을 사용해야 했다.

1
2
3
4
<h1>Format manually</h1>
<p th:text="${#dates.format(standardDate, 'dd-MM-yyyy HH:mm')}"></p>
<p th:text="${#temporals.format(localDateTime, 'dd-MM-yyyy HH:mm')}"></p>
<p th:text="${#temporals.format(localDate, 'MM-yyyy')}"></p>

참조링크 : https://www.baeldung.com/dates-in-thymeleaf

반응형

댓글