首页 > 数据库技术 > 详细

Class org.apache.struts2.json.JSONWriter can not access a member of class org.springframework.aop.TruePointcut with modifiers "public"

时间:2015-04-18 01:02:31      阅读:331      评论:0      收藏:0      [点我收藏+]

Spring注入Action使用Json错误:org.apache.struts2.json.JSONException: org.apache.struts2.json.JSONException: org.apache.struts2.json.JSONException: org.apache.struts2.json.JSONException: java.lang.IllegalAccessException: Class org.apache.struts2.json.JSONWriter can not access a member of class org.springframework.aop.TruePointcut with modifiers "public"

 

异常已经说,不应该访问TruePointcut这个类你没有访问权限(因为它并不是一个public类型的)

解决办法:

    在Action里面注入spring时,只能生成set(),而不能有get()

其实就是把引用的业务层接口的get方法删除或者再把action中的getXX()方法上面加上@JSON(serialize=false) 禁止序列化

如:

    action里面调用 private UserService userService; 生成getXX()、setXX()后,请删掉getXX(),问题就解决了

Class org.apache.struts2.json.JSONWriter can not access a member of class org.springframework.aop.TruePointcut with modifiers "public"

原文:http://www.cnblogs.com/liunanjava/p/4436299.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!