在使用JSONObject.fromObject的时候,出现“There is a cycle in the hierarchy”异常. 意思是出现了死循环,也就是Model之间有循环包含关系: 解决办法: 使用setCycleDetectionStrategy防止自包含 代码: JsonConfig jsonConfig=new JsonConfig(); jsonConfig.setIgnoreDefaultExcludes(false); jsonConfig.se
net.sf.json.JSONObject采用反射的方式,对POJO进行转换.JSONObject类实现了JSON.Map和Comparable接口,如下: class JSONObject extends AbstractJSON implements JSON, Map, Comparable 以Person类为例分析源码: public class Person { private String name; private int age; public String getName()