一、背景:
最近在做项目的时候发现用雪花算法生成的id传给前端以后跟生成的不一样,就纳闷,在想为什么会出现这样的问题?
二、问题分析:
最开始以为是序列化的问题导致的仔细对比以后发现前端是后几位不一样都是0,上网查询后才发现是内部的问题,long类型继承的是number类,而number类型精度为16位,而雪花算法生成的id为19位,因此会导致进度丢失
请求到后端返回数据:
返回到前端后的数据:
三、直接上解决方案:
①如果想要前端不丢失精度,JSON中的id就不能是long类型,改为String类型就好了。
②通过添加一个全局配置来使long类型转为JSON中的string类型,省去了一个一个添加注解的麻烦。
package com.tbyf.hip.cloud.service.reservation.common.config;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.module.SimpleModule;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.converter.json.Jackson2ObjectMapperBuilder;
@Configuration
public class JacksonConfiguration {
@Bean
// 使用该注解@ConditionalOnMissingBean(ObjectMapper.class)时
// 当容器中不存在名为 `objectMapper` 的 Bean 时,jacksonObjectMapper(Jackson2ObjectMapperBuilder builder)方法会被执行,创建一个新的 ObjectMapper实例并注册到容器中。
// 如果容器中已经存在名为 objectMapper 的 Bean,那么 jacksonObjectMapper(Jackson2ObjectMapperBuilder builder) 方法不会被执行。
@ConditionalOnMissingBean(ObjectMapper.class)
public ObjectMapper jacksonObjectMapper(Jackson2ObjectMapperBuilder builder){
ObjectMapper objectMapper = builder.createXmlMapper(false).build();
SimpleModule simpleModule = new SimpleModule();
// 将Long类型转为String类型
simpleModule.addSerializer(Long.class, ToStringSerializer.instance);
objectMapper.registerModule(simpleModule);
return objectMapper;
}
}
添加上述配置重启项目,重新请求返回前端后的数据: