返回 JSON 格式数据,Long 前端精准度丢失问题

spring-boot 2.0.0 以下版本

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {
@Override
public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
// 返回 JSON,Long 前端精准度丢失问题
MappingJackson2HttpMessageConverter converter = new MappingJackson2HttpMessageConverter();
ObjectMapper mapper = new ObjectMapper();
/*
* 序列换成json时,将所有的long变成string
* 因为js中得数字类型不能包含所有的java long值
*/
SimpleModule module = new SimpleModule();
module.addSerializer(Long.class, ToStringSerializer.instance);
module.addSerializer(Long.TYPE, ToStringSerializer.instance);
mapper.registerModule(module);
converter.setObjectMapper(mapper);
converters.add(converter);
}
}

spring-boot 2.0.x以上版本,要在WebMvConfig上添加@Order(0)注解,否则配置不生效

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import com.fasterxml.jackson.databind.module.SimpleModule;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.annotation.Order;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.http.converter.json.Jackson2ObjectMapperBuilder;
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

import java.math.BigInteger;
import java.text.SimpleDateFormat;
import java.util.List;

/**
* Web Mvc 自定义配置
*
* <pre>
* spring-boot 2.0.0.RELEASE configureMessageConverters生效,2.0.3.RELEASE不生效问题
* 2.0.3.RELEASE要加&#64;Order(0)才可以,而2.0.0.RELEASE以下版本不用加
* </pre>
*
* @author Created by YL on 2017/6/5.
*/
@Configuration
@Order(0)
public class WebMvcConfig implements WebMvcConfigurer {

@Override
public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
Jackson2ObjectMapperBuilder builder = Jackson2ObjectMapperBuilder.json();
builder.dateFormat(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"));

// if (this.applicationContext != null) {
// builder.applicationContext(this.applicationContext);
// }
// messageConverters.add(new MappingJackson2HttpMessageConverter(builder.build()));
// 返回 JSON,Long 前端精准度丢失问题
// ObjectMapper mapper = new ObjectMapper();
// // 格式化日志格式
// mapper.setDateFormat(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"));

/*
* 序列换成json时,将所有的long变成string
* 因为js中得数字类型不能包含所有的java long值
*/
SimpleModule module = new SimpleModule();
module.addSerializer(Long.TYPE, ToStringSerializer.instance);
module.addSerializer(Long.class, ToStringSerializer.instance);
module.addSerializer(BigInteger.class, ToStringSerializer.instance);
builder.modules(module);

// mapper.registerModule(module);
// MappingJackson2HttpMessageConverter converter = new MappingJackson2HttpMessageConverter(builder.build());
// converter.setObjectMapper(mapper);
converters.add(new MappingJackson2HttpMessageConverter(builder.build()));
}
}

spring-boot 2.1.x 版本

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@Bean
public Jackson2ObjectMapperBuilderCustomizer jackson2ObjectMapperBuilderCustomizer() {
Jackson2ObjectMapperBuilderCustomizer customizer = new Jackson2ObjectMapperBuilderCustomizer() {
@Override
public void customize(Jackson2ObjectMapperBuilder builder) {
builder.dateFormat(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"))
/*
* 序列换成json时,将所有的long变成string
* 因为js中得数字类型不能包含所有的java long值
*/
.serializerByType(Long.class, ToStringSerializer.instance)
.serializerByType(Long.TYPE, ToStringSerializer.instance)
.serializerByType(BigInteger.class, ToStringSerializer.instance);
}
};
return customizer;
}
  • 本文作者: forever杨
  • 本文链接: https://blog.yl-online.top/posts/a56434f6.html
  • 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。如果文章内容对你有用,请记录到你的笔记中。本博客站点随时会停止服务,请不要收藏、转载!