8. Tymeleaf LocalDateTime
1. thymeleaf 추가 Dependency
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-java8time</artifactId>
<version>3.0.1.RELEASE</version>
</dependency>2. AppApplication.class 에 추가하기
@Bean
public Java8TimeDialect java8TimeDialect() {
return new Java8TimeDialect();
}3. thymeleaf 구문
Last updated