thymeleaf 日期時間類型格式化,LocalDateTime 出錯

  <dependency>
        <groupId>org.thymeleaf.extras</groupId>
        <artifactId>thymeleaf-extras-java8time</artifactId>
        <version>${thymeleaf-extras-java8time.version}</version>
    </dependency>

首先我們需要引入上面的包,因java8中時間類型與之前版本不一致

在轉換中應該採用temporals來做格式化

        <td th:text="${#temporals.format(userRelation.updateTime,'yyyy-MM-dd HH:mm:ss')}"></td>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章