严重: Servlet.service() for servlet [centralServlet] in context with path [/UserTest] threw exception [Request processing Failed; nested exception is net.sf.json.JSONException: java.lang.reflect.InvocationTargetException] with root cause java.lang.NullPointerException at org.hibernate.tuple.entity.EntityMetamodel.isNaturalIdentifierInsertGenerated(EntityMetamodel.java:1127)
上面的异常是在执行下面的语句出现的:
JSONArrayarray=JSONArray.fromObject(this.users);
出现这bug
出现了两种情况:
1.日期格式
2.hibernate延时加载
解决:日期格式
JsonConfig jsonConfig = new JsonConfig();
jsonConfig.setCycleDetectionStrategy(CycleDetectionStrategy.LENIENT);
jsonConfig.registerJsonBeanProcessor(java.sql.Date.class,new JsDateJsonBeanProcessor());
或者
private java.util.Date createTime;
解决:hibernate延时加载设置
JsonConfig cfg = new JsonConfig(); cfg.setExcludes(new String[]{"handler","hibernateLazyInitializer"});还有一个办法就是建一个 model 类,将需要的数据取出来放到 model 对象中,然后把 model 对象转换成 json 对象 原文链接:https://www.f2er.com/json/290127.html