ply

吞噬黑暗
posts - 1, comments - 11, trackbacks - 0, articles - 13
  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理
jQuery调用JSON时,net.sf.json.JSONException: There is a cycle in the hierarchy!

遇到了一些问题,如hibernate延迟加载错误,这都是老掉牙的问题了,一看就知道加个lazy=flase就OK了。想不到快要完成了又遇到了新的问题,JSON死循环,实在让人郁闷。异常如下:


net.sf.json.JSONException: There is a cycle in the hierarchy!
        at net.sf.json.util.CycleDetectionStrategy$StrictCycleDetectionStrategy.
handleRepeatedReferenceAsObject(CycleDetectionStrategy.java:97)
        at net.sf.json.JSONObject._fromBean(JSONObject.java:674)
        at net.sf.json.JSONObject.fromObject(JSONObject.java:181)
        at net.sf.json.JSONArray._processValue(JSONArray.java:2381)
        at net.sf.json.JSONArray.processValue(JSONArray.java:2412)
        Truncated. see log file for complete stacktrace
>


仔细查了一下发现是hibernate主外键关联的错,后来就想下json源代码下来看,发现大费周章都没搞到json源码,还是老办法反编译瞅瞅,发现JSONArray根据判断取得的不同类型调用相应的方法,

if (object instanceof Collection)
    return _fromCollection((Collection)object, jsonConfig);

而我从hibernate那得到的是list,所以去调用了_fromCollection方法,而里面的方法发现一个问题:该方法会不断的拆开实体属性,直到没有为止,而我的ContactGroup里有两个属性用于自身关联

private Set contactGroups = new HashSet(0);
private Set contactGroupPersons = new HashSet(0);


也就是说主外键自身关联的是个死循环,那怎么才能不让他出现这种情况呢,应该有个配置的参数后者终止循环的地方吧,查看发
现,jsonConfig,呵呵,config应该是配置参数吧,参看JsonConfig看见巨多的属性,有点晕PropertyFilter
,不提了,看了老半天,发现了一个属性PropertyFilter,PropertyFilter 是一个interface,代码如下:


public interface PropertyFilter
{


public abstract boolean apply(Object obj, String s, Object obj1);
}


也就是说我可以通过这个方法过滤掉List里的相应属性,只要让它返回true就可过滤掉,……,有点悬……我们重写一下这个方法:


JsonConfig cfg = new JsonConfig();
    cfg.setJsonPropertyFilter(new PropertyFilter()
    {
         public boolean apply(Object source, String name, Object value) {
           if(name.equals("contactGroups")||name.equals("contactGroupPersons")) {
             return true;
           } else {
             return false;
          }
        }
       });

将hibernate产生的实体bean中的contactGroups和contactGroupPersons过滤掉就OK了!

然后调用JSONArray.fromObject(mychildren,cfg); mychildren是hibernate返回的list。

 

 1List<ShoppingCart> listCarts = sCartServiceImpl
 2                        .ShoppingCartTable(shoppingCart);
 3                // 先过滤对set集合的拆解
 4                JsonConfig config = new JsonConfig();
 5                config.setJsonPropertyFilter(new PropertyFilter() {
 6                    @Override
 7                    public boolean apply(Object arg0, String arg1, Object arg2) {
 8                        if (arg1.equals("shoppingCarts")) {
 9                            return true;
10                        }
 else {
11                            return false;
12                        }

13                    }

14                }
);
15                // 将数据转换成Json数据
16                JSONArray jsonObject = JSONArray.fromObject(listCarts, config);
17                System.out.println(jsonObject.toString());
18

搞了一下午,参考网络的资料!解决问题了!


评论

# re: jQuery调用JSON时,net.sf.json.JSONException: There is a cycle in the hierarchy   回复  更多评论   

2012-06-26 15:22 by cfm
请问这个PropertyFilter接口怎么调用啊 我在类上实现这个接口编译不通过

# re: jQuery调用JSON时,net.sf.json.JSONException: There is a cycle in the hierarchy   回复  更多评论   

2012-12-07 13:49 by upup
@cfm
你只要把这个接口当成一个参数放到fromObject里面就行了。
JSONArray jsonObject = JSONArray.fromObject(listCarts, config);

# re: jQuery调用JSON时,net.sf.json.JSONException: There is a cycle in the hierarchy [未登录]  回复  更多评论   

2012-12-11 16:30 by Rose
太感谢了,我正好碰到这个问题了。

# re: jQuery调用JSON时,net.sf.json.JSONException: There is a cycle in the hierarchy   回复  更多评论   

2013-09-16 09:25 by taojie
请问要在哪里重写呢?为什么这里老是报这个异常

# re: jQuery调用JSON时,net.sf.json.JSONException: There is a cycle in the hierarchy   回复  更多评论   

2013-09-16 09:41 by taojie
shoppingCarts指的是哪里的属性还是?

# re: jQuery调用JSON时,net.sf.json.JSONException: There is a cycle in the hierarchy   回复  更多评论   

2013-10-25 11:51 by er
根本就行不通

# re: jQuery调用JSON时,net.sf.json.JSONException: There is a cycle in the hierarchy   回复  更多评论   

2013-11-26 14:31 by vf
vddv

# re: jQuery调用JSON时,net.sf.json.JSONException: There is a cycle in the hierarchy   回复  更多评论   

2014-04-17 15:57 by hong0220
已经解决了,好用啊

# re: jQuery调用JSON时,net.sf.json.JSONException: There is a cycle in the hierarchy   回复  更多评论   

2014-05-02 11:01 by @jack
不错是那个问题,出现了死循环,只要把实体中相应的属性过滤掉就OK,顶

# re: jQuery调用JSON时,net.sf.json.JSONException: There is a cycle in the hierarchy [未登录]  回复  更多评论   

2016-03-01 17:13 by monkey
楼主太给力了,谢谢你的分享,好人一生平安!!!

只有注册用户登录后才能发表评论。


网站导航: