SpringBoot返回long,前端接收进度丢失,@JsonSerialize不生效

在项目中,当实体类的字段为Long类型时 如果Long值超过前端能处理显示的长度范围时,会导致前端处理数值的精度丢失。

例如下图前端与后台实际数据情况:

前端:

SpringBoot返回long,前端接收进度丢失,@JsonSerialize不生效_第1张图片

后台接口:

 SpringBoot返回long,前端接收进度丢失,@JsonSerialize不生效_第2张图片

 排除问题1:

已使用正确注解

import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;

排除问题2:

实体类上已添加注解

SpringBoot返回long,前端接收进度丢失,@JsonSerialize不生效_第3张图片

 

排除问题3:

实体类是否为接口返回对象:

SpringBoot返回long,前端接收进度丢失,@JsonSerialize不生效_第4张图片

 

排除问题4:

验证服务层方法返回结果对象与返回对象的关系

SpringBoot返回long,前端接收进度丢失,@JsonSerialize不生效_第5张图片

解决问题:

在服务层方法返回结果对象属性上标记“

@JsonSerialize(using = ToStringSerializer.class)

 

你可能感兴趣的:(前端)