概述
第一次使用Strut的<html:multibox>标签库时,遇到了一个棘手问题:
org.apache.jasper.JasperException: No getter method available for property XXX for bean under name org.apache.struts.taglib.html.BEAN
经过了大半天痛苦的挣扎,才找到了这bug的根源。把我的这个问题写下来,希望对遇到的人有所帮助。- Step One:检查JSP和ActionFormBean中是否有拼写错误。
- Step Two:检查在request中修改了属性名为ActionFormBean的代码,看是否存入了错误的FormBean导致属性不匹配。
// in my JSP
<html:form action="actionA" type="ActionFormA">
<logic:iterate id="element" name="list" type="LabelValueBean">
<html:multibox property="propertyA"><bean:write name="element" property="value"/></html:multibox><bean:write name="element" property="label"/>
</logic:iterate>
<logic:iterate id="element" name="list" type="LabelValueBean">
<html:multibox property="propertyA"><bean:write name="element" property="value"/></html:multibox><bean:write name="element" property="label"/>
</logic:iterate>
// in my ActionFormA
String[] propertyA;
public void setPropertyA(String[] str){
this.propertyA = str;
}
public String[] getPropertyA(){
return this.propertyA ;
}
public void setPropertyA(String[] str){
this.propertyA = str;
}
public String[] getPropertyA(){
return this.propertyA ;
}
// in my Action
HibernateBean hb = manager.getHibernateBean(id);
httpServletRequest.setAttribute(" ActionFormA ", hb);
httpServletRequest.setAttribute(" ActionFormA ", hb);
错误在此!增加了ActionForm的propertyA属性但是存到request中的确是没有修改的HibernateBean!
修改后 :
HibernateBean hb = manager.getHibernateBean(id);
ActionFormA aForm = new ActionFormA(hb); //将hb数据复制到aForm中
httpServletRequest.setAttribute("ActionFormA", mForm );
ActionFormA aForm = new ActionFormA(hb); //将hb数据复制到aForm中
httpServletRequest.setAttribute("ActionFormA", mForm );
It works!
最后
以上就是背后白羊为你收集整理的 找不到getter Property XXX问题解决方法的全部内容,希望文章能够帮你解决 找不到getter Property XXX问题解决方法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复