當(dāng)前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
011_SpringBoot视图层技术thymeleaf-日期格式化
生活随笔
收集整理的這篇文章主要介紹了
011_SpringBoot视图层技术thymeleaf-日期格式化
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
一. 日期格式化
1. ${#dates.format(birthday)}格式化日期, 默認(rèn)的以瀏覽器默認(rèn)語言為格式化標(biāo)準(zhǔn)。
2. ${#dates.format(birthday,'yyy/MM/dd')}按照自定義的格式做日期轉(zhuǎn)換。
3. ${#dates.year(birthday)}獲取年。
4. ${#dates.month(birthday)}獲取月。
5. ${#dates.day(birthday)}獲取日。
二. Thymeleaf日期格式化案例
1. 使用maven構(gòu)建SpringBoot的名叫spring-boot-view-thymeleaf-dates項(xiàng)目
2. pom.xml?
<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>com.bjbs</groupId><artifactId>spring-boot-view-thymeleaf-dates</artifactId><version>0.0.1-SNAPSHOT</version><parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>1.5.13.RELEASE</version></parent><!-- 修改jdk版本 --><properties><java.version>1.8</java.version><!-- 指定thymeleaf和thymeleaf-layout-dialect高版本可以防止html標(biāo)簽不規(guī)范報(bào)錯(cuò) --><thymeleaf.version>3.0.2.RELEASE</thymeleaf.version><thymeleaf-layout-dialect.version>2.0.4</thymeleaf-layout-dialect.version></properties><dependencies><!-- springBoot的啟動(dòng)器 --><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-thymeleaf</artifactId></dependency></dependencies> </project>3. 在src/main/resources/templates下新建dates.html
<!DOCTYPE html> <html><head><meta charset="UTF-8" /><title>Thymeleaf日期格式化</title></head><body><h3>Thymeleaf格式化日期, 默認(rèn)的以瀏覽器默認(rèn)語言為格式化標(biāo)準(zhǔn)</h3><span th:text="${#dates.format(birthday)}"></span><hr/><h3>Thymeleaf按照自定義的格式做日期轉(zhuǎn)換</h3><span th:text="${#dates.format(birthday,'yyy/MM/dd')}"></span><hr/><h3>Thymeleaf獲取年</h3><span th:text="${#dates.year(birthday)}"></span><hr/><h3>Thymeleaf獲取月</h3><span th:text="${#dates.month(birthday)}"></span><hr/><h3>Thymeleaf獲取日</h3><span th:text="${#dates.day(birthday)}"></span></body> </html>4. 新建UserController.java
package com.bjbs.controller;import java.util.Date; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping;@Controller public class UserController {@RequestMapping("/show")public String showInfo(Model model) {model.addAttribute("birthday", new Date());return "dates";} }5. 新建App.java
package com.bjbs;import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;/*** SpringBoot啟動(dòng)類*/ @SpringBootApplication public class App {public static void main(String[] args) {SpringApplication.run(App.class, args);} }6. 啟動(dòng)項(xiàng)目, 并使用瀏覽器訪問
總結(jié)
以上是生活随笔為你收集整理的011_SpringBoot视图层技术thymeleaf-日期格式化的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 010_SpringBoot视图层技术t
- 下一篇: 012_SpringBoot视图层技术t