解决json出现数据引用格式“$ref“: “$.data[0]“的问题
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
想要的数据格式
{“userList”:[{“age”:“1”,“name”:“ddw”}],“userList2”:[{“age”:“1”,“name”:“ddw”}]}
返回的数据格式
{“userList”:[{“age”:“1”,“name”:“ddw”}],“userList2”:[{“ r e f " : " ref":" ref":".userList[0]”}]}
问题原因
对象在序列号时,为了防止循环引用造成返回数据栈溢出的问题,自动将相同的节点数据使用引用方式代替
解决方式
设置禁用循环参考检测
全局关闭方式
JSON.DEFAULT_GENERATE_FEATURE = SerializerFeature.DisableCircularReferenceDetect.getMask();
局部关闭方式
JSON.toJSONString(result, SerializerFeature.DisableCircularReferenceDetect)
springboot配置解决方案
/**
* springboot 自定义序列号格式
*/
@Configuration
public class FastjsonConfiguration {
@Bean
public HttpMessageConverters fastjsonConverter() {
FastJsonConfig fastJsonConfig = new FastJsonConfig();
//自定义格式化输出
fastJsonConfig.setSerializerFeatures(SerializerFeature.PrettyFormat,
SerializerFeature.WriteNullStringAsEmpty,
SerializerFeature.WriteNullNumberAsZero,
SerializerFeature.WriteDateUseDateFormat,
SerializerFeature.DisableCircularReferenceDetect);//禁止循环引用
FastJsonHttpMessageConverter4 fastjson = new FastJsonHttpMessageConverter4();
fastjson.setFastJsonConfig(fastJsonConfig);
return new HttpMessageConverters(fastjson);
}
}
或者进行list对象的深拷贝
JSON.parseArray(JSON.toJSONString(result, SerializerFeature.DisableCircularReferenceDetect),User.class);
GitHub 加速计划 / js / json
18
5
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:2 个月前 )
960b763e
5 个月前
8c391e04
8 个月前
更多推荐
已为社区贡献2条内容
所有评论(0)