fastjson

一、引言

spring boot默认的json解析是 jackson
可以引入阿里的 fastjson

  为什么引入fastjson?(个人认为)

  1、相对较快

  2、支持国产

  SpringBoot 整合 fastjson解析JSON数据  方式有两种:

方法1:

在启动类中,注入Bean:HttpMessageConverters

方法2:

a、SpringBoot2.0 以下的版本     

        (1)继承extends WebMvcConfigurerAdapter

        (2)覆盖方法configureMessageConverters

  b、SpringBoot2.0 以上版本

 在SpringBoot2.0及Spring 5.0 WebMvcConfigurerAdapter已被废弃,目前找到解决方案

fastjson

fastjson

二、开发步骤

1、引入fastjson 依赖库

fastjson

这里要说下很重要的话,官方文档说的1.2.10以后,会有两个方法支持HttpMessageconvert,一个是FastJsonHttpMessageConverter,支持4.2以下的版本,一个是FastJsonHttpMessageConverter4支持4.2以上的版本,具体有什么区别暂时没有深入研究。这里也就是说:低版本的就不支持了,所以这里最低要求就是1.2.10+。

2、准备基本的数据

fastjson

3、fastjson 转换方法有2 种

a> 方法一:在启动类中,注入Bean:HttpMessageConverters

fastjson

b> 方式二:

(1)继承extends WebMvcConfigurerAdapter

(2)覆盖方法configureMessageConverters

fastjson

4、测试

fastjson

浏览器效果如下:

fastjson

相关推荐