服务器之家

服务器之家 > 正文

详解在springmvc中解决FastJson循环引用的问题

时间:2020-07-31 15:45     来源/作者:asialee

我们先来看一个例子:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.elong.bms;
 
import java.io.OutputStream;
import java.util.HashMap;
import java.util.Map;
 
import com.alibaba.fastjson.JSON;
 
public class Test {
 public static void main(String[] args) {
 Map<String, Student> maps = new HashMap<String, Student>();
 Student s1 = new Student("s1", 16);
 
 maps.put("s1", s1);
 maps.put("s2", s1);
 
 byte[] bytes = JSON.toJSONBytes(maps);
 
 System.out.println(new String(bytes));
 }
}

输出:

?
1
{"s1":{"age":16,"name":"s1"},"s2":{"$ref":"$.s1"}}

可以看到,这个json如果发到前端是无法使用的,幸好FastJson提供了解决办法,我们来看下,解决办法为禁用循环引用检测,代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.elong.bms;
 
import java.io.OutputStream;
import java.util.HashMap;
import java.util.Map;
 
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.serializer.SerializerFeature;
 
public class Test {
 public static void main(String[] args) {
 Map<String, Student> maps = new HashMap<String, Student>();
 Student s1 = new Student("s1", 16);
 
 maps.put("s1", s1);
 maps.put("s2", s1);
  
 SerializerFeature feature = SerializerFeature.DisableCircularReferenceDetect;
 
 byte[] bytes = JSON.toJSONBytes(maps,feature);
 
 System.out.println(new String(bytes));
 }
}

输出如下:

?
1
{"s1":{"age":16,"name":"s1"},"s2":{"age":16,"name":"s1"}}

问题是如果我们在spring mvc中使用的时候,需要将SerializerFeature注入到MessageConverter里面, FastJsonHttpMessageConverter

但是SerializerFeature是一个enum类型的,又是一个array,考虑到大部分人对这个不熟悉,直接上代码了。

?
1
2
3
4
5
6
7
8
9
10
11
12
<bean id="jsonConverter"
  class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter">
  <property name="supportedMediaTypes" value="application/json;charset=UTF-8"/>
  <property name="features">
  <array value-type="com.alibaba.fastjson.serializer.SerializerFeature">
   <value>DisableCircularReferenceDetect</value>
  </array>
  </property>
 </bean>
 <bean id="DisableCircularReferenceDetect" class="org.springframework.beans.factory.config.FieldRetrievingFactoryBean">
  <property name="staticField" value="com.alibaba.fastjson.serializer.SerializerFeature.DisableCircularReferenceDetect"></property>
 </bean>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://asialee.iteye.com/blog/2101915

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
沙雕群名称大全2019精选 今年最火的微信群名沙雕有创意
沙雕群名称大全2019精选 今年最火的微信群名沙雕有创意 2019-07-07
返回顶部