개발자/Thymeleaf
[Thymeleaf] 날짜형식(String -> Date Format/Date -> Date포맷)
퍼플벌룬
2021. 5. 24. 15:13
String -> Date포맷
<span th:text="${#temporals.format(result.regDt, 'yyyy-MM-dd HH:mm')}"></span>
Date -> Date포맷
<span th:text="${#dates.format(result.regDt, 'yyyy-MM-dd')}"></span>