在尝试将json对象转换为list时候出现了如下错误 Exception in thread "main" net.sf.json.JSONException: java.lang.NoSuchMethodException: AAA$Pdata.<init>() at net.sf.json.JSONObject.toBean(JSONObject.java:288) at net.sf.json.JSONArray.toCollection(JSONArray.java…
因为项目中使用了AJAX技术,jar包为:json-lib.jar,在开发过程中遇到了一个JSON-LIB和Hibernate有关的问题: 如hibernate延迟加载错误,这都是些老问题了,一看就知道加个lazy=flase就OK了.想不到快要完成了又遇到了新的问题,JSON死循环,实在让人郁闷.异常如下: net.sf.json.JSONException: There is a cycle in the hierarchy! at net.sf.json.util.CycleDetecti…
近期做项目的时候,发现使用net.sf.json包中的JSONObject或JSONArray将对象转为json数据结构存在一个坑.当对String类型的属性赋值为null情况下,转为json结构为"",但前端需要为null.而包com.fasterxml.jackson可以将原来null转为json中的null.特记录于此,举例说明如下: User实体: public class User { String name; Integer age; public User() { sup…