Thymeleaf模板格式化LocalDatetime时间格式
Posted qihai16
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Thymeleaf模板格式化LocalDatetime时间格式相关的知识,希望对你有一定的参考价值。
添加maven依赖
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-java8time</artifactId>
<version>3.0.1.RELEASE</version>
</dependency>
前端模板上的写法:
<span th:text="${#dates.formatISO(时间字段)}"></span >
<span th:text="${#temporals.formatISO(时间字段)}"></span >
<span th:text="${#temporals.format(localDateTime, ‘dd-MM-yyyy HH:mm‘)}"></span > //自定义时间格式 个人只试过这一个
<span th:text="${#temporals.formatISO(时间字段)}"></span >
PS:需要注意的是
时间字段,要是LocalDate或者是LocalDatetime类型,像我个人在项目里使用vo对象时将时间字段不小心用了String
无论使用上面的哪一种写法,都会出现模板解析错误,String的时候,直接写 ${时间字段} 就行
不过有发现,会在秒的后面多了 .0 出来。因为我们的项目是用的规范是LocalDatetime,所以我直接改了类型,其他的还没有试
转载于:https://www.cnblogs.com/asker009/p/9370603.html 作者:我是属车的
以上是关于Thymeleaf模板格式化LocalDatetime时间格式的主要内容,如果未能解决你的问题,请参考以下文章