无法找到Bean / Entity For getter&安装在jsp-struts中

时间:2013-06-21 06:14:15

标签: java hibernate struts

我需要你的帮助才能找到错误。

使用以下jsp标签时,我面临错误

<html:select property="searchIn" styleId="searchIn" style="width:250px">
    <html:optionsCollection name="appForm"  property="repList" 
            label="firstName" value="id" />
</html:select>

例外:

javax.servlet.jsp.JspException: No getter method available for property firstName for bean under name [Ljava.lang.Object;@4120aa

appForm是我的struts Form类:

appForm {
List<empEntity> repList= new ArrayList<empEntity>();
 //getter setters
}

empEntity是实体/模型:

empEntity {
 String firstName;
//getter setter.

}

我无法理解为什么它在Object类

中寻找名字

0 个答案:

没有答案