异常:Class com.googlecode.jsonplugin.JSONWriter can not access a member of class
在ssh中action中引入service 需要提供set方法,提交表单的时候,只要Action中的属性有setter 方法,这些表单数据就可以正确赋值到Action中属性里;另外对于Spring配置文件中声明的bean,也可以在Action中声明setter 方法将其注入到Action实例中。
若是写getter方法 会引起异常。struts2的action里面的数据转换成json数据时,会将提供了get方法的属性都串行化输出JSON到客户端,有些属性并不能串行化json数据。可以在不能串行化到json的属性相应的get方法前加一条json标记 @JSON(serialize=false)。告诉json不需要转化这个属性。或者根本不写这个get方法。