我需要你的帮助来定位错误。
在使用以下 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 类中寻找名字