溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么在Spring Boot中使用LocalDateTime進(jìn)行格式化處理

發(fā)布時(shí)間:2021-04-09 15:46:17 來源:億速云 閱讀:970 作者:Leah 欄目:編程語言

這篇文章給大家介紹怎么在Spring Boot中使用LocalDateTime進(jìn)行格式化處理,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

Controller接收LocalDateTime參數(shù)

在Spring中,接收LocalDateTime日期時(shí)間數(shù)據(jù)時(shí),只需要使用@DateTimeFormat注解即可。@DateTimeFormat可以注解在字段、參數(shù)以及方法上,如果接收的為DTO,則需要將@DateTimeFormat注解在DTO中的字段上。

需要注意的是pattern是全匹配,參數(shù)格式必須要和定義的一樣。

@GetMapping("date")
public Object date(@RequestParam @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") LocalDateTime date) {
 return date;
}

@GetMapping("date2")
public Object date(@RequestParam @DateTimeFormat(pattern = "yyyy-MM-dd") LocalDate date) {
 return date;
}

ResponseBody格式化LocalDateTime

Spring默認(rèn)使用使用jackson來進(jìn)行json格式轉(zhuǎn)換,我們只需要使用@Bean注解創(chuàng)建一個(gè)ObjectMapperbean,并將JavaTimeModule注冊到ObjectMapper中即可,spring會使用該bean創(chuàng)建MappingJackson2HttpMessageConverter進(jìn)行json格式轉(zhuǎn)換。

這里需要加入jackson的jsr310擴(kuò)展包。

<dependency>
 <groupId>com.fasterxml.jackson.datatype</groupId>
 <artifactId>jackson-datatype-jsr310</artifactId>
 <version>2.8.9</version>
</dependency>
@Bean(name = "mapperObject")
public ObjectMapper getObjectMapper() {
 ObjectMapper om = new ObjectMapper();
 JavaTimeModule javaTimeModule = new JavaTimeModule();
 javaTimeModule.addSerializer(LocalDateTime.class, new LocalDateTimeSerializer(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")));
 javaTimeModule.addSerializer(LocalDate.class, new LocalDateSerializer(DateTimeFormatter.ofPattern("yyyy-MM-dd")));
 javaTimeModule.addSerializer(LocalTime.class, new LocalTimeSerializer(DateTimeFormatter.ofPattern("HH:mm:ss")));
 om.registerModule(javaTimeModule);
 return om;
}

另外,如果持久層框架使用mybatis,同樣需要加入mybatis的jsr310 擴(kuò)展包。

<dependency>
 <groupId>org.mybatis</groupId>
 <artifactId>mybatis-typehandlers-jsr310</artifactId>
 <version>1.0.2</version>
</dependency>

關(guān)于怎么在Spring Boot中使用LocalDateTime進(jìn)行格式化處理就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI