본문 바로가기
Back-End/Spring

thymeleaf 사용 시 날짜포맷팅

by 어렵다어려웡 2021. 3. 1.

1. build.gradle

 

dependencies {
	compile group: 'org.thymeleaf.extras', name: 'thymeleaf-extras-java8time'
}

 

2. html 에서 테스트 진행

<html lang="en" xmlns:th="http://www.thymeleaf.org">

 <!-- 나머지 태그 생략 --> 
 	
    <th:block th:each="dto : ${result}">
		<div>
        	[[ ${#temporals.format(dto.regDate, "yyyy-MM-dd" }  ]] 
        </div>
    </th:block>
 

'Back-End > Spring' 카테고리의 다른 글

(2) QuerydslRepositorySupport - Tuple 활용  (0) 2021.03.09
(1) QueryRepositorySupport  (0) 2021.03.09
테스트폴더에 lombok 적용  (0) 2021.03.01
Querydsl 설정  (0) 2021.03.01
Spring에서 XML을 이용한 CronExpression 사용방법  (0) 2020.07.04