溫馨提示×

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

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

如何解決SpringBoot版本升級(jí)引起數(shù)據(jù)顯示出錯(cuò)及排查

發(fā)布時(shí)間:2021-09-29 17:22:40 來源:億速云 閱讀:185 作者:柒染 欄目:大數(shù)據(jù)

如何解決SpringBoot版本升級(jí)引起數(shù)據(jù)顯示出錯(cuò)及排查,相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。

描述

原來環(huán)境

Spring boot1.5.3

fastjson

<!--阿里 FastJson依賴-->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
            <version>1.2.47</version>
        </dependency>

pojo中配置

import com.alibaba.fastjson.annotation.JSONField;
import org.springframework.format.annotation.DateTimeFormat;

 	@JSONField(format = "yyyy-MM-dd HH:mm")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
    private Date pubTime;

測試結(jié)果

"pubTime": "2019-02-19 13:45",

升級(jí)2.0.6測試結(jié)果

"pubTime": "2019-02-26T09:22:24.000+0000",

排查解決

經(jīng)過來回更換版本等幾個(gè)小時(shí)的嘗試后,分析結(jié)果:Spring Boot默認(rèn)采用jackson作為解析,原因可能是采用1.5.3時(shí),WebMvcConfigurer extends WebMvcConfigurerAdapter類中關(guān)于fastjson的配置起了作用,解析框架采用了fastjson(@JSONField);而升級(jí)為2.0.6之后,由于沒有對(duì)WebMvcConfigurer配置(原WebMvcConfigurerAdapter上自動(dòng)加了刪除線),Spring boot默認(rèn)采用了jackjson解析框架,導(dǎo)致@JSONField未起作用,故出現(xiàn)上述解析結(jié)果。

解決方案

就是要自己定義解析框架fastjson,不用Spring boot默認(rèn)的jackson框架。

在啟動(dòng)類中添加以下配置:

import org.springframework.boot.autoconfigure.http.HttpMessageConverters;
import org.springframework.context.annotation.Bean;
import org.springframework.http.MediaType;

	@Bean
    public HttpMessageConverters fastJsonHttpMessageConverters(){
        //創(chuàng)建FastJson信息轉(zhuǎn)換對(duì)象
        FastJsonHttpMessageConverter fastJsonHttpMessageConverter = new FastJsonHttpMessageConverter();

        //創(chuàng)建Fastjosn對(duì)象并設(shè)定序列化規(guī)則
        FastJsonConfig fastJsonConfig = new FastJsonConfig();
        fastJsonConfig.setSerializerFeatures(SerializerFeature.PrettyFormat);
        // 中文亂碼解決方案
        List<MediaType> mediaTypes = new ArrayList<>();
        mediaTypes.add(MediaType.APPLICATION_JSON_UTF8);//設(shè)定json格式且編碼為UTF-8
        fastJsonHttpMessageConverter.setSupportedMediaTypes(mediaTypes);

        //規(guī)則賦予轉(zhuǎn)換對(duì)象
        fastJsonHttpMessageConverter.setFastJsonConfig(fastJsonConfig);

        return new HttpMessageConverters(fastJsonHttpMessageConverter);
    }

問題得到解決,時(shí)間格式可以正常返回顯示。

看完上述內(nèi)容,你們掌握如何解決SpringBoot版本升級(jí)引起數(shù)據(jù)顯示出錯(cuò)及排查的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

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

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

AI