json
文章平均质量分 90
叶威1
这个作者很懒,什么都没留下…
展开
-
Failed to load resource: the server responded with a status of 500 (Internal Server Error)
用struts2和jquery.ajax进行异步请求的时候在谷歌浏览器的console出现了Failed to load resource: the server responded with a status of 500 (Internal Server Error)而struts2中action中的方法正常执行并且能查询到数据到时这些数据不能返回到页面上,即jquery.ajax中的回调原创 2013-01-07 22:55:34 · 149397 阅读 · 2 评论 -
JSON — Java与JSON数据互转
转换时Bean所要求的: 被转换的Bean必需是public的。 Bean被转换的属性一定要有对应的get方法,且一定要是public的。 Bean中不能用引用自身的this的属性,否则运行时出现et.sf.json.JSONException: There is a cycle in the hierarchy!异常 json-lib包转换时,不能以null为键名,否则运行报net.sf原创 2013-03-02 13:43:15 · 2058 阅读 · 0 评论 -
ssh+json问题
我在使用struts+hibernate+spring+jquery进行异步请求的时候在火狐浏览器上的控制台上报了这个样的一个异常: Apache Tomcat/6.0.36 - Error report,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sa原创 2013-02-22 18:12:36 · 3161 阅读 · 0 评论 -
list转成json对象
需要的包: 1.commons-lang.jar 2.commons-beanutils.jar 3.commons-collections.jar 4.commons-logging.jar 5.ezmorph.jar 6.json-lib-2.2.2-jdk15.jar 测试的例子: 可以用这个方法JSONArray.fromObject(list)原创 2013-12-18 15:02:39 · 6089 阅读 · 0 评论 -
json数据转换异常:net.sf.json.JSONException: java.lang.reflect.InvocationTargetException
执行: JSONArray array = JSONArray.fromObject(this.users); 就会报以下错误: net.sf.json.JSONException: java.lang.reflect.InvocationTargetException users是一个list集合 方案一: JSONArray array = JSONArray.fr原创 2013-12-20 10:34:48 · 91433 阅读 · 4 评论