반응형
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
반응형
'Server' 카테고리의 다른 글
Windows React 개발환경 구축 (0) | 2019.12.05 |
---|---|
스프링부트 lombok builder 오류 해결 (2) | 2019.04.19 |
Java JDBC 드라이버 없다고 에러나는 상황에서의 설정 (0) | 2017.12.27 |
Mysql DB 선택과 확인 명령 (0) | 2017.12.27 |
서버 각종 에러 페이지 띄우기 (0) | 2017.11.28 |
댓글