解析SpringMvcLong类型精度丢失问题
⽬录
背景
Spring Boot Controller
前端调⽤
⽅案
⽅案⼀ @JsonSerialize 注解
⽅案⼆全局处理器
与swagger集成
总结
背景
在使⽤Spring Boot Mvc的项⽬中,使⽤Long类型作为id的类型,但是当前端使⽤Number类型接收Long类型数据时,由于前端精度问题,会导致Long类型数据转换为Number类型时的后两位变为0 Spring Boot Controller
以下代码提供⼀个Controller,返回⼀个Dto, Dto的id是Long类型的,其中id的返回数据是1234567890102349123
@CrossOrigin注解表⽰可以跨域访问
@RestController()
@RequestMapping
public class LongDemoController {
@GetMapping("getLongValue")
@CrossOrigin(origins = "*")
public GetLongValueDto getLongValue(){
GetLongValueDto result = new GetLongValueDto();
result.setId(1234567890102349123L);
return result;
}
@Data
public static class GetLongValueDto{
private Long id;
}
}springmvc选择题
前端调⽤
现在使⽤jquery调⽤后端地址,模拟前端调⽤
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>spring boot mvc long</title>
</head>
<body>
<p>Long:<span id='resId'></span></p>
<p>Id类型:<span id='idType'></span></p>
<script src="cdn.bootcdn/ajax/libs/jquery/3.6.0/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
console.log('init');
$.ajax({url:"localhost:8080/getLongValue"})
.then(res=>{
console.log({
'getLongValue':res
});
$('#resId').text(res.id);
$('#idType').text(typeof res.id);
})
});
</script>
</body>
</html>
运⾏结果
通过输出结果和查看⽹络的内容,发现实际上id返回的结果是1234567890102349000,最后⼏位都变成了00, 这是因为,javascript的Number类型最⼤长度是17位,⽽后端返回的Long类型有19位,导致js的Number不能解析。
⽅案
既然不能使⽤js的Number接收,那么前端如何Long类型的数据呢,答案是js使⽤string类型接收
⽅案⼀ @JsonSerialize 注解
修改Dto的id字段,使⽤@JsonSerialize注解指定类型为string。
这个⽅案有⼀个问题,就是需要程序员明确指定@JsonSerialize,在实际的使⽤过程中,程序员会很少注意到Long类型的问题,只有和前端联调的时候发现不对。
@Data
public static class GetLongValueDto{
@JsonSerialize(using= ToStringSerializer.class)
private Long id;
}
⽅案⼆全局处理器
添加Configuration,处理HttpMessageConverter
@Configuration
public class WebConfiguration implements WebMvcConfigurer {
/**
* 序列化json时,将所有的long变成string
* 因为js中得数字类型不能包含所有的java long值
*/
@Override
public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
MappingJackson2HttpMessageConverter jackson2HttpMessageConverter = new MappingJackson2HttpMessageConverter();
ObjectMapper objectMapper = new ObjectMapper();
SimpleModule simpleModule=new SimpleModule();
simpleModule.addSerializer(Long.class, ToStringSerializer.instance);
simpleModule.addSerializer(Long.TYPE, ToStringSerializer.instance);
jackson2HttpMessageConverter.setObjectMapper(objectMapper);
converters.add(0,jackson2HttpMessageConverter);
}
}
@Data
public static class GetLongValueDto{
private Long id;
}
发现没有@JsonSerialize注解的信息,前端接收到的数据,也是string类型了。
与swagger集成
上⾯只是解决了传输时的long类型转string,但是当集成了swagger时,swagger⽂档描述的类型仍然是number类型的,这样在根据swagger⽂档⽣成时,会出现类型不匹配的问题swagger ⽂档集成
pom或gradle
implementation group: 'io.springfox', name: 'springfox-boot-starter', version: '3.0.0'
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
查看⽂档, 发现 GetLongValueDto 描述的id类型是 integer($int64)
swagger long类型描述为string
需要修改swagger的配置, 修改Docket的配置
.directModelSubstitute(Long.class, String.class)
.
directModelSubstitute(long.class, String.class)
@Configuration
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.any())//api的配置路径
.paths(PathSelectors.any())//扫描路径选择
.build()
.directModelSubstitute(Long.class, String.class)
.
directModelSubstitute(long.class, String.class)
.apiInfo(apiInfo());
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("title") //⽂档标题
.description("description")//接⼝概述
.version("1.0") //版本号
.termsOfServiceUrl(String.format("url"))//服务的域名
//.license("LICENSE")//证书
//.licenseUrl("www.guangxu")//证书的url
.
build();
}
}
查看swagger⽂档 , 可以看到⽂档中类型已经是 string了
总结
long类型传输到前端的两种⽅案:注解、修改HttpMessageConverter
使⽤directModelSubstitute解决swagger⽂档中类型描述,避免⽣成代码器中描述的类型错误
以上就是Spring Mvc Long类型精度丢失的详细内容,更多关于Spring Mvc Long类型的资料请关注其它相关⽂章!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论