Spring Boot 配置 FastJson

jackson

Spring Boot 自带的序列化工具是 jackson

最简单使用

java 复制代码
@RestController  
public class PingController {  
    @GetMapping("ping")  
    public Map<String, Object> ping() {  
        Map<String, Object> map = new HashMap<>();  
        Date date = new Date();
        map.put("data", "pong");  
        map.put("date", date)
        return map;  
    }  
}

配置 jackson 序列行为

yaml 复制代码
spring:  
  jackson:  
    date-format: yyyy-MM-dd HH:mm:ss  # 时间格式化方式  
    time-zone: Asia/Shanghai  # 时区  
    serialization:  
      write-dates-as-timestamps: false # 时间戳

响应结果:

json 复制代码
{
	"date": "2024-10-13 13:55:16",
	"data": "pong"
}

fastjson

Spring Boot 3.x 中配置 fastjson

安装依赖

gradle 复制代码
implementation "com.alibaba:fastjson:1.2.83"

配置 fastjson 有三种:

  1. 利用 Spring Boot 自动配置机制配置
  2. 使用 @EnableWebMvc 注解,Spring Boot 自动配置机制会失效
  3. 使用 FastJsonHttpMessageConverter 替换 jackson

使用 Spring Boot 自动配置机制

java 复制代码
@Configuration  
public class WebConfig implements WebMvcConfigurer {  
    @Bean  
    public FastJsonConfig fastJsonConfig() {  
        FastJsonConfig config = new FastJsonConfig();  
        config.setDateFormat("yyyy-MM-dd HH:mm:ss");  // 时间格式化
        config.setSerializerFeatures(SerializerFeature.PrettyFormat); // 美化输出
        config.setSerializeConfig(SerializeConfig.globalInstance);   // 表示开启全局序列化配置
        return config;  
    }  
  
    @Override  
    public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {  
        FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter();  
        converter.setDefaultCharset(StandardCharsets.UTF_8);  // 设置字符集为 UTF-8   
        List<MediaType> mediaTypes = Collections.singletonList(MediaType.APPLICATION_JSON);  
        fastConverter.setSupportedMediaTypes(mediaTypes);  // 转换器只处理 application/json 类型的请求和响应
        fastConverter.setFastJsonConfig(fastJsonConfig());  
	    converters.add(0, fastConverter);  // 将 fastjson 转换器转换器添加到首位,确保优先使用 fastjson 转换器
    }
}

使用 @EnableWebMvc 注解

java 复制代码
@Configuration
@EnableWebMvc
public class WebConfig implements WebMvcConfigurer {  
    @Bean  
    public FastJsonConfig fastJsonConfig() {  
        FastJsonConfig config = new FastJsonConfig();  
        config.setDateFormat("yyyy-MM-dd HH:mm:ss");  // 时间格式化
        config.setSerializerFeatures(SerializerFeature.PrettyFormat);  
        config.setSerializeConfig(SerializeConfig.globalInstance);  
        return config;  
    }  
  
    @Override  
    public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {  
        FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter();  
        fastConverter.setDefaultCharset(StandardCharsets.UTF_8);  // 设置字符集为 UTF-8   
        List<MediaType> mediaTypes = Collections.singletonList(MediaType.APPLICATION_JSON);  
        fastConverter.setSupportedMediaTypes(mediaTypes);  // 转换器只处理 application/json 类型的请求和响应
        fastConverter.setFastJsonConfig(fastJsonConfig());  
	    converters.add(fastConverter);  // fastjson 会被添加到转换器列表的末尾,需要配置 EnableWebMvc 使用
    }
}

这两方式的区别就在于使用 converters.add(converter) 会将 fastjson 转换器添加到转换器列表的末尾,Spring Boot 内置的 jackson 转换器会优先执行

所以需要在类上面添加上 @EnableWebMvc 的注解,让 Spring Boot 内置的转换器失效

使用 FastJsonHttpMessageConverter 替换 jackson

java 复制代码
@Configuration
public class WebConfig implements WebMvcConfigurer {
    @Bean
    public FastJsonHttpMessageConverter responseBodyConverter() {
        FastJsonConfig config = new FastJsonConfig();
        config.setDateFormat("yyyy-MM-dd HH:mm:ss");
        config.setSerializerFeatures(SerializerFeature.PrettyFormat);
        config.setSerializeConfig(SerializeConfig.globalInstance);
          
        FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter();
        fastConverter.setFastJsonConfig(config);
        return fastConverter;
    }
}

与前面两种方式的区别是,这种方式是完全替代 jackson ,而前两种方式是 jacksonfastjson 共存的

相关推荐
万物皆字节6 分钟前
Springboot3 自动装配流程与核心文件:imports文件
spring boot
问道飞鱼9 分钟前
【Springboot知识】Springboot结合redis实现分布式锁
spring boot·redis·分布式
Yeats_Liao10 分钟前
Spring 框架:配置缓存管理器、注解参数与过期时间
java·spring·缓存
Yeats_Liao10 分钟前
Spring 定时任务:@Scheduled 注解四大参数解析
android·java·spring
码明10 分钟前
SpringBoot整合ssm——图书管理系统
java·spring boot·spring
某风吾起14 分钟前
Linux 消息队列的使用方法
java·linux·运维
xiao-xiang18 分钟前
jenkins-k8s pod方式动态生成slave节点
java·kubernetes·jenkins
取址执行29 分钟前
Redis发布订阅
java·redis·bootstrap
S-X-S42 分钟前
集成Sleuth实现链路追踪
java·开发语言·链路追踪
快乐就好ya1 小时前
xxl-job分布式定时任务
java·分布式·spring cloud·springboot