SpringBoot2.0解決Long型數據轉換成json格式時丟失精度問題

解決Long型數據轉換成json格式時丟失精度

最近項目中突然發現雪花算法生成的數據庫主鍵id返回給前端時和本身的值不一致,於是後端進行斷點調試發現沒問題,於是問題聚焦於轉換json格式,於是自定義Json 格式化,因為使用Springboot,全是自動化配置,所以要覆蓋框架本身的轉換方式,經翻閱官方文檔,提下下列註解,自定json轉換

在這裡插入圖片描述

代碼如下:

@JsonComponent
public class JsonSerializerManage {
    @Bean
    public ObjectMapper jacksonObjectMapper(Jackson2ObjectMapperBuilder builder) {
        ObjectMapper objectMapper = builder.createXmlMapper(false).build();
        //忽略value為null 時 key的輸出
        objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
        /**
         * 序列換成json時,將所有的long變成string
         * 因為js中得數字類型不能包含所有的java long值
         */
        SimpleModule module = new SimpleModule();
        module.addSerializer(Long.class, ToStringSerializer.instance);
        module.addSerializer(Long.TYPE, ToStringSerializer.instance);
        objectMapper.registerModule(module);
        return objectMapper;
    }
}

SpringBoot時間格式,Long型精度丟失常見問題

時間格式,Long型精度丟失

方法一: 在配置文件application.yml中增加如下代碼即可。

註意:WebMvcConfig配置類或啟動類中不要加@EnableMVC註解,加瞭會導致jackson配置失效

spring:
  jackson:
    ## 日期格式(可根據自己的需求修改格式)
    date-format: yyyy-MM-dd HH:mm:ss 
    generator:
     ## 將數值類型轉換為字符串,解決long型精度丟失
      write_numbers_as_strings: true
@SuppressWarnings("deprecation")
@Configuration
public class AppWebMvcConfig extends WebMvcConfigurerAdapter{
        //省略代碼片段
}

方法二:新建WebMvcCofig配置文件,重寫數據轉換方法。

註意:@EnableMVC註解不可缺失,缺失會導致Long型精度丟失 

@SuppressWarnings("deprecation")
@Configuration
@EnableWebMvc
public class AppWebMvcConfig extends WebMvcConfigurerAdapter{
	@Override
	public void configureMessageConverters(List<HttpMessageConverter<?>>
												   converters){
		FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter();
		FastJsonConfig fastJsonConfig = new FastJsonConfig();
		SerializeConfig serializeConfig = SerializeConfig.getGlobalInstance();
		//支持的數據類型
		List<MediaType> supportedMediaTypes = new ArrayList<MediaType>();
		supportedMediaTypes.add(MediaType.APPLICATION_JSON);
		supportedMediaTypes.add(MediaType.APPLICATION_JSON_UTF8);
		supportedMediaTypes.add(MediaType.APPLICATION_ATOM_XML);
		supportedMediaTypes.add(MediaType.APPLICATION_FORM_URLENCODED);
		supportedMediaTypes.add(MediaType.APPLICATION_OCTET_STREAM);
		supportedMediaTypes.add(MediaType.APPLICATION_PDF);
		supportedMediaTypes.add(MediaType.APPLICATION_RSS_XML);
		supportedMediaTypes.add(MediaType.APPLICATION_XHTML_XML);
		supportedMediaTypes.add(MediaType.APPLICATION_XML);
		supportedMediaTypes.add(MediaType.IMAGE_GIF);
		supportedMediaTypes.add(MediaType.IMAGE_JPEG);
		supportedMediaTypes.add(MediaType.IMAGE_PNG);
		supportedMediaTypes.add(MediaType.TEXT_EVENT_STREAM);
		supportedMediaTypes.add(MediaType.TEXT_HTML);
		supportedMediaTypes.add(MediaType.TEXT_MARKDOWN);
		supportedMediaTypes.add(MediaType.TEXT_PLAIN);
		supportedMediaTypes.add(MediaType.TEXT_XML);
		fastConverter.setSupportedMediaTypes(supportedMediaTypes);
		serializeConfig.put(Long.class, ToStringSerializer.instance);//Long轉String
		serializeConfig.put(Long.TYPE, ToStringSerializer.instance);//Long轉String
		fastJsonConfig.setSerializeConfig(serializeConfig);
		fastJsonConfig.setDateFormat("yyyy-MM-dd HH:mm:ss");//日期格式
		fastConverter.setFastJsonConfig(fastJsonConfig);
		converters.add(fastConverter);
	}

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: