There is a cycle in the hierarchy!

在开发过程中遇到了一个JSON-LIB和Hibernate有关的问题:

net.sf.json.JSONException: There is a cycle in the hierarchy!

因为Hibernate中设置了自身关联:

 <set name="areas" inverse="true">
         <key>
          <column name="mid" not-null="true" />
         </key>
         <one-to-many class="Area"/>
</set>

 

//设置自身关联的组对象

public class Map {
    private Integer mid;
    private Integer x;
    private Integer y;
    private String url;
    private Set<Area> areas = new HashSet<Area>();

 

通过JSON-LIB来过滤关联的集合属性,代码如下:

JsonConfig config = new JsonConfig();
config.setJsonPropertyFilter(new PropertyFilter(){
    public boolean apply(Object source, String name, Object value) {
        if(name.equals("areas")) { //要过滤的areas ,Map对象中的
            return true;
        } else {
            return false;
        }
    }
});                
JSONObject json = JSONObject.fromObject( ma , config); /// ma 为要转成json的 Map 对象

 

http://www.cnblogs.com/ksyou/archive/2009/05/31/1493061.html

你可能感兴趣的:(html,Hibernate,.net,json)