赞
踩
Spring Boot默认自带使用的Jackson来解析json数据,但是青菜萝卜各有所爱,可能有些小伙伴习惯使用阿里巴巴的FastJson,下面就简单介绍一下如何在springboot中集成fastjson
从大体上有两种集成方式,其实区别不大:
方式一:
(1)启动类继承extends WebMvcConfigurerAdapter
(2)覆盖方法configureMessageConverters
方式二:
(1)在启动类中注入Bean : HttpMessageConverters
下面具体介绍下:
方式一:
首先添加fastjson依赖包
- <!-- 添加fastjson 依赖包. -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.15</version>
- </dependency>
启动类继承WebMvcConfigurerAdapter并覆盖configureMessageConverters
* 1、需要先定义一个 convert 转换消息的对象;
* 2、添加fastJson 的配置信息,比如:是否要格式化返回的json数据;
* 3、在convert中添加配置信息.
* 4、将
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。