91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

SpringBoot如何實現LocalDateTime日期轉換

發布時間:2021-12-16 17:16:11 來源:億速云 閱讀:722 作者:小新 欄目:大數據

小編給大家分享一下SpringBoot如何實現LocalDateTime日期轉換,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

一、LocalDateTime日期轉換兩個問題

1.前端傳入參數時String轉換為Date

SpringBoot如何實現LocalDateTime日期轉換

org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot 
deserialize value of type `java.time.LocalDateTime` from String "2020-02-11 12:48:13": Failed to 
deserialize java.time.LocalDateTime: (java.time.format.DateTimeParseException) Text '2020-02-11 
12:48:13' could not be parsed at index 10; nested exception is 
com.fasterxml.jackson.databind.exc.InvalidFormatException: Cannot deserialize value of type 
`java.time.LocalDateTime` from String "2020-02-11 12:48:13": Failed to deserialize 
java.time.LocalDateTime: (java.time.format.DateTimeParseException) Text '2020-02-11 12:48:13' could 
not be parsed at index 10
 at [Source: (PushbackInputStream); line: 4, column: 19] (through reference chain: 
com.example.demo.model.Test["localDateTime"])

2.后臺返回值時Date轉換為String

LocalDateTime中間有個“T”,其他時間類型時間格式可讀性也很差。

SpringBoot如何實現LocalDateTime日期轉換

二、解決方案

編寫一個時間配置類,使用HTTP消息轉換器來格式化。

import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
import com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer;
import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateTimeSerializer;
import org.springframework.boot.autoconfigure.jackson.Jackson2ObjectMapperBuilderCustomizer;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;

/**
 * 時間統一配置
 */
@Configuration
public class DateConfig {

    @Bean
    public Jackson2ObjectMapperBuilderCustomizer jsonCustomizer() {
        JavaTimeModule module = new JavaTimeModule();
        module.addDeserializer(LocalDateTime.class, new LocalDateTimeDeserializer(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")));
        module.addSerializer(LocalDateTime.class, new LocalDateTimeSerializer(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")));
        return builder -> {
            builder.simpleDateFormat("yyyy-MM-dd hh:mm:ss");
            builder.deserializers(new LocalDateTimeDeserializer(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")));
            builder.serializers(new LocalDateTimeSerializer(DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss")));
            builder.modules(module);
        };
    }

}
三、驗證效果

1.第一個問題解決效果圖:

SpringBoot如何實現LocalDateTime日期轉換

2.第二個問題解決效果圖:

SpringBoot如何實現LocalDateTime日期轉換

我們可以看到使用了HTTP消息轉換器來格式化后,連Date類型也格式化正常了。

看完了這篇文章,相信你對“SpringBoot如何實現LocalDateTime日期轉換”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

临清市| 铜川市| 中方县| 晋州市| 荥阳市| 滕州市| 珲春市| 临桂县| 卓资县| 出国| 龙门县| 金溪县| 花莲市| 凯里市| 苏尼特左旗| 黄石市| 革吉县| 萝北县| 进贤县| 都江堰市| 南和县| 上犹县| 九江县| 清远市| 台山市| 新田县| 河源市| 修水县| 营口市| 安康市| 喜德县| 仙桃市| 石家庄市| 深泽县| 湟中县| 遵义县| 连州市| 门头沟区| 曲水县| 荔波县| 山阴县|