码迷,mamicode.com
首页 > 其他好文 > 详细

There is a cycle in the hierarchy

时间:2014-04-29 13:32:21      阅读:346      评论:0      收藏:0      [点我收藏+]

标签:java   json   jsonobject   fromobject   jsonconfig   

在使用JSONObject.fromObject的时候,出现“There is a cycle in the hierarchy”异常。

意思是出现了死循环,也就是Model之间有循环包含关系;

解决办法:

使用setCycleDetectionStrategy防止自包含

代码:

JsonConfig jsonConfig = new JsonConfig();

jsonConfig.setCycleDetectionStrategy(CycleDetectionStrategy.LENIENT);

JSONObject json =JSONObject.fromObject(model, jsonConfig);

result = json.toString();

依赖的包: 

import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import net.sf.json.JsonConfig;
import net.sf.json.util.CycleDetectionStrategy;

参考网页:

http://www.cnblogs.com/az19870227/archive/2011/09/19/2180993.html


There is a cycle in the hierarchy

标签:java   json   jsonobject   fromobject   jsonconfig   

原文地址:http://blog.csdn.net/testcs_dn/article/details/24694709

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!