Fastjson将object转为Json时避免出现"$ref"
fastjson
FASTJSON 2.0.x has been released, faster and more secure, recommend you upgrade.
项目地址:https://gitcode.com/gh_mirrors/fastj/fastjson
免费下载资源
·
今天和同事联调时,一直无法成功调用对方的接口,最后发现,是我给他的参数有问题,json格式的string中含有"$ref"
我使用的方法是
String params = JSON.toJSONString(resp);
</pre><span style="font-size:18px"></span><p></p><p>得到结果中存在<span style="color:#ff0000">"$ref"</span></p><p><span style="font-size:18px">最后改为如下方式</span></p><p></p><pre name="code" class="java">String params = JSON.toJSONString(resp, SerializerFeature.DisableCircularReferenceDetect);
问题得到解决。
SerializerFeature.DisableCircularReferenceDetect是用来禁止循环引用检测的。
GitHub 加速计划 / fastj / fastjson
25.69 K
6.51 K
下载
FASTJSON 2.0.x has been released, faster and more secure, recommend you upgrade.
最近提交(Master分支:3 个月前 )
c942c834 - 1 年前
5bc4709b - 1 年前
更多推荐
已为社区贡献7条内容
所有评论(0)