阿里巴巴 SpringBoot json库
时间: 2023-07-05 13:08:43 浏览: 113
详解Springboot之接收json字符串的两种方式
阿里巴巴的 SpringBoot 通常使用 Fastjson 库来进行 JSON 数据的序列化和反序列化操作。Fastjson 是一个高性能的 JSON 库,它支持将 Java 对象序列化成 JSON 字符串,以及将 JSON 字符串反序列化成 Java 对象。
在 SpringBoot 中使用 Fastjson 可以通过在 pom.xml 文件中添加以下依赖来实现:
```xml
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.62</version>
</dependency>
```
然后在 SpringBoot 的配置类中添加以下代码:
```java
@Configuration
public class FastjsonConfig {
@Bean
public HttpMessageConverters fastJsonHttpMessageConverters() {
// 1.需要定义一个convert转换消息的对象;
FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter();
// 2.添加fastjson的配置信息;
FastJsonConfig fastJsonConfig = new FastJsonConfig();
fastJsonConfig.setSerializerFeatures(
SerializerFeature.PrettyFormat,
SerializerFeature.WriteMapNullValue,
SerializerFeature.WriteNullStringAsEmpty,
SerializerFeature.DisableCircularReferenceDetect
);
// 3.在convert中添加配置信息.
fastConverter.setFastJsonConfig(fastJsonConfig);
HttpMessageConverter<?> converter = fastConverter;
return new HttpMessageConverters(converter);
}
}
```
这样就可以在 SpringBoot 中使用 Fastjson 库进行 JSON 数据的转换了。
阅读全文