SpringBoot---SpringBoot项目整合fastjson

本文档介绍了如何在SpringBoot项目中剔除默认的json库并引入Fastjson。首先,你需要在pom.xml文件中排除SpringBoot自带的json依赖,并引入Fastjson的最新版本。接着,创建一个Fastjson配置类,设置FastJsonHttpMessageConverter,包括配置序列化特性、解决UTF-8编码问题。通过这些步骤,你可以实现SpringBoot应用中使用Fastjson进行JSON数据的序列化和反序列化。

导入fastjson依赖

1.剔除SpringBoot自带json格式

		<!--web-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-json</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

2.引入fastjson

		<!-- fastjson -->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
            <version>1.2.76</version>
        </dependency>
        

fastjson配置类

package studio.banner.officialwebsite.config;

import com.alibaba.fastjson.serializer.SerializerFeature;
import com.alibaba.fastjson.support.config.FastJsonConfig;
import com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter;
import org.springframework.boot.autoconfigure.http.HttpMessageConverters;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.MediaType;
import org.springframework.http.converter.HttpMessageConverter;

import java.util.ArrayList;
import java.util.List;


/**
 * @Author: Re
 * @Date: 2021/5/20 17:39
 */
@Configuration
public class FastjsonConfig {
    @Bean
    public HttpMessageConverters fastJsonHttpMessageConverters() {
        //1、定义一个convert转换消息的对象
        FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter();
        //2、添加fastjson的配置信息
        FastJsonConfig fastJsonConfig = new FastJsonConfig();
        fastJsonConfig.setSerializerFeatures(SerializerFeature.PrettyFormat);
        //3、解决浏览器乱码
        List<MediaType> fastMediaTypes = new ArrayList<>();
        fastMediaTypes.add(MediaType.APPLICATION_JSON_UTF8);
        fastConverter.setSupportedMediaTypes(fastMediaTypes);
        //4、在convert中添加配置信息
        fastConverter.setFastJsonConfig(fastJsonConfig);
        //5、将convert添加到converters中
        HttpMessageConverter<?> converter = fastConverter;
        return new HttpMessageConverters(converter);
    }
}

若是需要进行其他配置请参考菜鸟教程

### Spring Boot 整合 FastJSON 示例及配置方法 #### 添加 Maven 依赖 为了在 Spring Boot 中使用 FastJSON 进行 JSON 处理,首先需要在项目的 `pom.xml` 文件中引入 FastJSON 的依赖项。以下是具体的依赖配置: ```xml <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.78</version> </dependency> ``` 上述代码片段展示了如何通过 Maven 构建工具来添加 FastJSON 到项目中[^2]。 --- #### 自定义 MessageConverter 配置 Spring Boot 默认使用 Jackson 来处理 JSON 数据转换。如果希望切换到 FastJSON,则需要自定义消息转换器 (`HttpMessageConverter`) 并将其注册到 Spring MVC 容器中。可以通过创建一个配置类来完成此操作: ```java import com.alibaba.fastjson.support.config.FastJsonConfig; import com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.http.converter.HttpMessageConverter; import java.util.List; @Configuration public class WebConfig { @Bean public HttpMessageConverter<?> fastJsonHttpMessageConverter() { // 创建 FastJsonHttpMessageConverter 实例 FastJsonHttpMessageConverter converter = new FastJsonHttpMessageConverter(); // 初始化并设置 FastJsonConfig 参数 FastJsonConfig config = new FastJsonConfig(); config.setSerializerFeatures( com.alibaba.fastjson.serializer.SerializerFeature.PrettyFormat, com.alibaba.fastjson.serializer.SerializerFeature.WriteMapNullValue); converter.setFastJsonConfig(config); return converter; } /** * 替换默认的消息转换器为 FastJSON 版本。 */ public void configureMessageConverters(List<HttpMessageConverter<?>> converters) { converters.add(fastJsonHttpMessageConverter()); } } ``` 以上代码实现了将 FastJSON 设置为默认的 JSON 解析库的功能,并允许开发者进一步调整序列化行为[^1]。 --- #### 测试 FastJSON 功能 假设我们有一个简单的控制器用于返回 JSON 数据,可以验证 FastJSON 是否正常工作。例如: ```java import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping("/api") public class UserController { @GetMapping("/user") public User getUser() { User user = new User(); user.setUsername("JohnDoe"); user.setBirthday(new Date()); return user; } } class User { private String username; private Date birthday; // Getter 和 Setter 方法省略 } ``` 当访问 `/api/user` 接口时,应该可以看到由 FastJSON 生成的标准 JSON 响应数据[^4]。 --- #### 注意事项 - **版本兼容性**:确保使用的 FastJSON 版本与当前环境匹配,避免潜在的安全漏洞或功能缺失问题。 - **性能优化**:对于大规模生产应用,建议评估不同 JSON 库之间的性能差异后再决定采用哪种方案。 - **安全性考量**:由于历史上存在一些关于 FastJSON 的安全风险报告,在实际部署前需仔细审查其最新补丁状态。 ---
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值