解决方案
1.取消FastJson的循环引用的检查:
JSONObject.toJSONString(guardVoList,SerializerFeature.DisableCircularReferenceDetect)
2. 加在字段上面 禁用循环引用
@JSONField(serialzeFeatures = {SerializerFeature.DisableCircularReferenceDetect})
3.通过对象拷贝,将对象的属性值复制新的对象中。
BeanUtils.copyProperties(old,new);
标签:对象,DisableCircularReferenceDetect,SerializerFeature,json,解析,ref From: https://www.cnblogs.com/eternality/p/16628336.html