SpringBoot 時間格式化的五種實現(xiàn)方法灌诅!

在我們?nèi)粘9ぷ髦邪锤担瑫r間格式化是一件經(jīng)常遇到的事兒,所以本文我們就來盤點一下 Spring Boot 中時間格式化的幾種方法服协。

時間問題演示

為了方便演示绍昂,我寫了一個簡單 Spring Boot 項目,其中數(shù)據(jù)庫中包含了一張 userinfo 表偿荷,它的組成結(jié)構(gòu)和數(shù)據(jù)信息如下:

image.png

項目目錄是這樣的:

image.png

UserController 實現(xiàn)代碼如下:

<pre class="prettyprint hljs less" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; word-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">@RestController
@RequestMapping("/user")
publicclass UserController {
@Resource
private UserMapper userMapper;

@RequestMapping("/list")
public List<UserInfo> getList() {
    return userMapper.getList();
}

}</pre>

UserMapper 實現(xiàn)代碼如下:

<pre class="prettyprint hljs java" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; word-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">@Mapper
publicinterface UserMapper {
public List<UserInfo> getList();
}</pre>

UserInfo 實現(xiàn)代碼如下:

<pre class="prettyprint hljs vbscript" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; word-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">@Data
publicclass UserInfo {
privateint id;
private String username;
private Date createtime;
private Date updatetime;
}</pre>

UserMapper.xml 實現(xiàn)代碼如下:

<pre class="prettyprint hljs xml" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; word-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"><?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN""http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.example.demo.mapper.UserMapper">
<select id="getList" resultType="com.example.demo.model.UserInfo">
select * from userinfo
</select>
</mapper></pre>

經(jīng)過以上內(nèi)容的編寫治专,我們就制作出了一個簡單的 Spring Boot 項目了。接下來遭顶,我們使用 PostMan 來模擬調(diào)用 UserController 接口张峰,執(zhí)行結(jié)果如下:

image.png

從上述結(jié)果可以看出,時間字段 createtime 和 updatetime 的顯示方式是很“凌亂”的棒旗,并不符合我們的閱讀習(xí)慣喘批,也不能直接展示給前端的用戶使用撩荣,這時候,我們就需要對時間進行格式化處理了饶深。

時間格式化的方法總共包含以下 5 種餐曹。

1、前端時間格式化

如果后端在公司中擁有絕對的話語權(quán)敌厘,或者是后端比較強勢的情況下台猴,我們可以將時間格式化的這個“鍋”強行甩給前端來處理。

為了讓這個“鍋”甩的更平順一些(磊哥不做廚師都可惜了)俱两,咱們可以給前端工程師提供切實可行的時間格式化方法饱狂,實現(xiàn)代碼如下。

JS 版時間格式化

<pre class="prettyprint hljs swift" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; word-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">function dateFormat(fmt, date) {
let ret;
const opt = {
"Y+": date.getFullYear().toString(), // 年
"m+": (date.getMonth() + 1).toString(), // 月
"d+": date.getDate().toString(), // 日
"H+": date.getHours().toString(), // 時
"M+": date.getMinutes().toString(), // 分
"S+": date.getSeconds().toString() // 秒
// 有其他格式化字符需求可以繼續(xù)添加宪彩,必須轉(zhuǎn)化成字符串
};
for (let k in opt) {
ret = newRegExp("(" + k + ")").exec(fmt);
if (ret) {
fmt = fmt.replace(ret[1], (ret[1].length == 1) ? (opt[k]) : (opt[k].padStart(ret[1].length, "0")))
};
};
return fmt;
}</pre>

方法調(diào)用:

<pre class="prettyprint hljs vbscript" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; word-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">let date = newDate();
dateFormat("YYYY-mm-dd HH:MM:SS", date);

2021-07-2521:45:12</pre>

2休讳、SimpleDateFormat格式化

大多數(shù)情況下,我們還是需要自力更生尿孔,各掃門前雪的俊柔,這個時候我們后端程序員就需要發(fā)揮自己的特長了,我們提供的第 1 個時間格式化的方法是使用 SimpleDateFormat 來進行時間格式化活合,它也是 JDK 8 之前重要的時間格式化方法雏婶,它的核心實現(xiàn)代碼如下:

<pre class="prettyprint hljs javascript" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; word-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">// 定義時間格式化對象和定義格式化樣式
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
// 格式化時間對象
String date = dateFormat.format(new Date())</pre>

接下來我們使用 SimpleDateFormat 來實現(xiàn)一下本項目中的時間格式化,它的實現(xiàn)代碼如下:

<pre class="prettyprint hljs php" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; word-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">@RequestMapping("/list")
public List<UserInfo> getList() {
// 定義時間格式化對象
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
List<UserInfo> list = userMapper.getList();
// 循環(huán)執(zhí)行時間格式化
list.forEach(item -> {
// 使用預(yù)留字段 ctime 接收 createtime 格式化的時間(Date->String)
item.setCtime(dateFormat.format(item.getCreatetime()));
item.setUtime(dateFormat.format(item.getUpdatetime()));
});
return list;
}</pre>

程序執(zhí)行結(jié)果如下:

image.png

從上述結(jié)果可以看出白指,時間格式化沒有任何問題留晚,以及到底我們預(yù)想的目的了。但細心的讀者會發(fā)現(xiàn)侵续,為什么接口的返回字段咋變了呢倔丈?(之前的字段是 createtime 現(xiàn)在卻是 ctime...)

這是因為使用 #SimpleDateFormat.format 方法之后,它返回的是一個 String 類型的結(jié)果状蜗,而我們之前的 createtime 和 updatetime 字段都是 Date 類型的需五,因此它們是不能接收時間格式化得結(jié)果的。

所以此時我們就需要在實體類 UserInfo 新增兩個字符串類型的“時間”字段轧坎,再將之前 Data 類型的時間字段進行隱藏宏邮,最終實體類 UserInfo 的實現(xiàn)代碼如下:

<pre class="prettyprint hljs typescript" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; word-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">import com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.Data;
import java.util.Date;
@Data
publicclass UserInfo {
privateint id;
private String username;
@JsonIgnore// 輸出結(jié)果時隱藏此字段
private Date createtime;
// 時間格式化后的字段
private String ctime;
@JsonIgnore// 輸出結(jié)果時隱藏此字段
private Date updatetime;
// 時間格式化后的字段
private String utime;
}</pre>

我們可以使用 @JsonIgnore 注解將字段進行隱藏,隱藏之后的執(zhí)行結(jié)果如下:

image.png

SpringBoot 時間格式化的五種實現(xiàn)方法缸血!

3蜜氨、DateTimeFormatter格式化

JDK 8 之后,我們可以使用 DateTimeFormatter 來替代 SimpleDateFormat捎泻,因為 SimpleDateFormat 是非線程安全的飒炎,而 DateTimeFormatter 是線程安全的,所以如果是 JDK 8 以上的項目笆豁,盡量使用 DateTimeFormatter 來進行時間格式化郎汪。

DateTimeFormatter 格式化的代碼和 SimpleDateFormat 類似赤赊,具體實現(xiàn)如下:

<pre class="prettyprint hljs php" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; word-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">@RequestMapping("/list")
public List<UserInfo> getList() {
// 定義時間格式化對象
DateTimeFormatter dateFormat = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
List<UserInfo> list = userMapper.getList();
// 循環(huán)執(zhí)行時間格式化
list.forEach(item -> {
// 使用預(yù)留字段 ctime 接收 createtime 格式化的時間(Date->String)
item.setCtime(dateFormat.format(item.getCreatetime()));
item.setUtime(dateFormat.format(item.getUpdatetime()));
});
return list;
}</pre>

執(zhí)行結(jié)果如下所示:

image.png

DateTimeFormatter 和 SimpleDateFormat 在使用上的區(qū)別是 DateTimeFormatter 是用來格式化 JDK 8 提供的時間類型的,如 LocalDateTime煞赢,而 SimpleDateFormat 是用來格式化 Date 類型的抛计,所以我們需要對 UserInfoer 實體類做如下的修改:

<pre class="prettyprint hljs css" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; word-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">import com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.Data;
import java.time.LocalDateTime;
@Data
publicclass UserInfo {
privateint id;
private String username;
@JsonIgnore
private LocalDateTime createtime;
private String ctime;
@JsonIgnore
private LocalDateTime updatetime;
private String utime;
}</pre>

我們可以使用 LocalDateTime 來接收 MySQL 中的 datetime 類型。

4照筑、全局時間格式化

以上兩種后端格式化的實現(xiàn)都有一個致命的缺點吹截,它們在進行時間格式化的時候,都需要對核心業(yè)務(wù)類做一定的修改凝危,這就相當(dāng)為了解決一個問題波俄,又引入了一個新的問題,那有沒有簡單一點媒抠、優(yōu)雅一點的解決方案呢弟断?

答案是:有的咏花。我們可以不改任何代碼趴生,只需要在配置文件中設(shè)置一下就可以實現(xiàn)時間格式化的功能了。

首先昏翰,我們找到 Spring Boot 的配置文件 application.properties(或 application.yml)苍匆,只需要在 application.properties 配置文件中添加以下兩行配置:

<pre class="prettyprint hljs tcl" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; word-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"># 格式化全局時間字段
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss

指定時間區(qū)域類型

spring.jackson.time-zone=GMT+8</pre>

這樣設(shè)置之后,我們將原始的 UserInfo 和 UserController 進行還原棚菊。

UserInfo 實現(xiàn)代碼如下:

<pre class="prettyprint hljs typescript" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; word-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">import lombok.Data;
import java.util.Date;
@Data
publicclass UserInfo {
privateint id;
private String username;
private Date createtime;
private Date updatetime;
}</pre>

UserController 實現(xiàn)代碼:

<pre class="prettyprint hljs kotlin" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; word-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">@RequestMapping("/list")
public List<UserInfo> getList() {
return userMapper.getList();
}</pre>

然后我們運行程序浸踩,看到的執(zhí)行結(jié)果如下:

image.png

從以上結(jié)果和代碼可以看出,我們只需要在程序中簡單配置一下统求,就可以實現(xiàn)所有時間字段的格式化了检碗。

實現(xiàn)原理分析

為什么在配置文件中設(shè)置一下,就可以實現(xiàn)所有時間字段的格式化了呢码邻?

<pre class="prettyprint hljs tcl" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; word-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"># 格式化全局時間字段
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss

指定時間區(qū)域類型

spring.jackson.time-zone=GMT+8</pre>

這是因為 Controller 在返回數(shù)據(jù)時折剃,會自動調(diào)用 Spring Boot 框架中內(nèi)置的 JSON 框架 Jackson,對返回的數(shù)據(jù)進行統(tǒng)一的 JSON 格式化處理像屋,在處理的過程中它會判斷配置文件中是否設(shè)置了“spring.jackson.date-format=yyyy-MM-dd HH:mm:ss”怕犁,如果設(shè)置了,那么 Jackson 框架在對時間類型的字段輸出時就會執(zhí)行時間格式化的處理己莺,這樣我們就通過配置來實現(xiàn)全局時間字段的格式化功能了奏甫。

為什么要指定時間區(qū)域類型“spring.jackson.time-zone=GMT+8”呢?

最現(xiàn)實的原因是凌受,如果我們不指定時間區(qū)域類型阵子,那么查詢出來的時間就會比預(yù)期的時間少 8 個小時,這因為我們(中國)所處的時間區(qū)域比世界時間少 8 個小時導(dǎo)致的胜蛉,而當(dāng)我們設(shè)置了時區(qū)之后挠进,我們的時間查詢才會和預(yù)期時間保持一致智蝠。

GMT 是什么?

時間區(qū)域設(shè)置中的“GMT” 是什么意思奈梳?

Greenwich Mean Time (GMT) 格林尼治時間杈湾,也叫做世界時間。

格林尼治時間

格林尼治是英國倫敦南郊原皇家格林尼治天文臺所在地攘须,地球本初子午線的標(biāo)界處漆撞,世界計算時間和經(jīng)度的起點。以其海事歷史于宙、作為本初子午線的標(biāo)準點浮驳、以及格林尼治時間以其命名而聞名于世。這里地勢險要捞魁,風(fēng)景秀麗至会,兼具歷史和地方風(fēng)情,也是倫敦在泰晤士河的東方門戶谱俭。

不光是天文學(xué)家使用格林尼治時間奉件,就是在新聞報刊上也經(jīng)常出現(xiàn)這個名詞。我們知道各地都有各地的地方時間昆著。如果對國際上某一重大事情县貌,用地方時間來記錄,就會感到復(fù)雜不便.而且將來日子一長容易搞錯凑懂。因此煤痕,天文學(xué)家就提出一個大家都能接受且又方便的記錄方法,那就是以格林尼治的地方時間為標(biāo)準接谨。

以本初子午線的平子夜起算的平太陽時摆碉。又稱格林尼治平時或格林尼治時間。各地的地方平時與世界時之差等于該地的地理經(jīng)度脓豪。1960年以前曾作為基本時間計量系統(tǒng)被廣泛應(yīng)用巷帝。由于地球自轉(zhuǎn)速率曾被認為是均勻的,因此在1960年以前,世界時被認為是一種均勻時。由于地球自轉(zhuǎn)速度變化的影響跑揉,它不是一種均勻的時間系統(tǒng)锅睛,它與原子時或力學(xué)時都沒有任何理論上的關(guān)系,只有通過觀測才能對它們進行比較。后來世界時先后被歷書時和原子時所取代历谍,但在日常生活现拒、天文導(dǎo)航、大地測量和宇宙飛行等方面仍屬必需望侈;同時印蔬,世界時反映地球自轉(zhuǎn)速率的變化,是地球自轉(zhuǎn)參數(shù)之一脱衙,仍為天文學(xué)和地球物理學(xué)的基本資料侥猬。

5例驹、部分時間格式化

某些場景下,我們不需要對全局的時間都進行統(tǒng)一的處理退唠,這種情況我們可以使用注解的方式來實現(xiàn)部分時間字段的格式化鹃锈。

我們需要在實體類 UserInfo 中添加 @JsonFormat 注解,這樣就可以實現(xiàn)時間的格式化功能了瞧预,實現(xiàn)代碼如下:

<pre class="prettyprint hljs kotlin" style="padding: 0.5em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(68, 68, 68); border-radius: 4px; display: block; margin: 0px 0px 1.5em; font-size: 14px; line-height: 1.5em; word-break: break-all; word-wrap: break-word; white-space: pre; background-color: rgb(246, 246, 246); border: none; overflow-x: auto; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.util.Date;
@Data
publicclass UserInfo {
privateint id;
private String username;
// 對 createtime 字段進行格式化處理
@JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss", timezone = "GMT+8")
private Date createtime;
private Date updatetime;
}</pre>

修改完代碼之后屎债,我們運行項目執(zhí)行結(jié)果如下:

image.png

從上述結(jié)果可以看出,使用注解的方式也可以實現(xiàn)時間的格式化垢油。它的實現(xiàn)原理和第 4 種時間格式化的實現(xiàn)原理類似盆驹,都是在返回數(shù)據(jù)之前,對相應(yīng)的字段進行時間格式化的處理滩愁。

總結(jié)

本文我們介紹了 5 種時間格式化的實現(xiàn)方法躯喇,其中第 1 種為前端時間格式化的方法,后 4 種為后端格式化的方法硝枉,SimpleDateFormat 和 DateTimeFormatter 格式化的方法更適用普通的 Java 項目廉丽,其中 SimpleDateFormat 是非線程安全的,而 DateTimeFormatter 是線程安全的檀咙,但它們都不是 Spring Boot 項目中最優(yōu)的時間格式化方案雅倒。

如果是 Spring Boot 的項目璃诀,推薦使用第 4 種全局時間格式化或第 5 種局部時間格式化的方式弧可,這兩種實現(xiàn)方式都無需修改核心業(yè)務(wù)代碼,只需要簡單的配置一下劣欢,就可以完成時間的格式化功能了棕诵。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市凿将,隨后出現(xiàn)的幾起案子校套,更是在濱河造成了極大的恐慌,老刑警劉巖牧抵,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件笛匙,死亡現(xiàn)場離奇詭異,居然都是意外死亡犀变,警方通過查閱死者的電腦和手機妹孙,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來获枝,“玉大人蠢正,你說我怎么就攤上這事∈〉辏” “怎么了嚣崭?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵笨触,是天一觀的道長。 經(jīng)常有香客問我雹舀,道長芦劣,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任说榆,我火速辦了婚禮持寄,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘娱俺。我一直安慰自己稍味,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布荠卷。 她就那樣靜靜地躺著模庐,像睡著了一般。 火紅的嫁衣襯著肌膚如雪油宜。 梳的紋絲不亂的頭發(fā)上掂碱,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天,我揣著相機與錄音慎冤,去河邊找鬼疼燥。 笑死,一個胖子當(dāng)著我的面吹牛蚁堤,可吹牛的內(nèi)容都是我干的醉者。 我是一名探鬼主播,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼披诗,長吁一口氣:“原來是場噩夢啊……” “哼撬即!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起呈队,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤剥槐,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后宪摧,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體粒竖,經(jīng)...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年几于,在試婚紗的時候發(fā)現(xiàn)自己被綠了蕊苗。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,137評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡孩革,死狀恐怖岁歉,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤锅移,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布熔掺,位于F島的核電站,受9級特大地震影響非剃,放射性物質(zhì)發(fā)生泄漏置逻。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一备绽、第九天 我趴在偏房一處隱蔽的房頂上張望券坞。 院中可真熱鬧,春花似錦肺素、人聲如沸恨锚。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽猴伶。三九已至,卻和暖如春塌西,著一層夾襖步出監(jiān)牢的瞬間他挎,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工捡需, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留办桨,地道東北人。 一個月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓站辉,卻偏偏與公主長得像呢撞,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子庵寞,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,901評論 2 345

推薦閱讀更多精彩內(nèi)容