springboot fastjson配置
时间: 2023-04-25 19:00:29 浏览: 115
Spring Boot中使用Fastjson的配置方法如下:
1. 添加Fastjson依赖
在pom.xml文件中添加Fastjson依赖:
```
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.62</version>
</dependency>
```
2. 配置Fastjson
在Spring Boot的配置类中添加以下配置:
```
@Configuration
public class FastjsonConfig {
@Bean
public HttpMessageConverters fastjsonHttpMessageConverters() {
// 创建Fastjson消息转换器
FastJsonHttpMessageConverter converter = new FastJsonHttpMessageConverter();
// 创建配置类
FastJsonConfig config = new FastJsonConfig();
// 配置序列化策略
config.setSerializerFeatures(
SerializerFeature.WriteMapNullValue, // 输出空置字段
SerializerFeature.WriteNullListAsEmpty, // list字段如果为null,输出为[],而不是null
SerializerFeature.WriteNullNumberAsZero, // 数值字段如果为null,输出为0,而不是null
SerializerFeature.WriteNullBooleanAsFalse, // Boolean字段如果为null,输出为false,而不是null
SerializerFeature.WriteNullStringAsEmpty // 字符类型字段如果为null,输出为"",而不是null
);
converter.setFastJsonConfig(config);
HttpMessageConverter<?> converter1 = converter;
return new HttpMessageConverters(converter1);
}
}
```
3. 使用Fastjson
在Controller中使用Fastjson进行序列化和反序列化:
```
@RestController
public class UserController {
@PostMapping("/user")
public User addUser(@RequestBody User user) {
// ...
return user;
}
@GetMapping("/user/{id}")
public User getUser(@PathVariable Long id) {
// ...
return user;
}
}
```
以上就是Spring Boot中使用Fastjson的配置方法。
阅读全文