选择标记未在Jsp上呈现

时间:2010-08-04 10:00:07

标签: java select struts2

在此之前我已成功使用struts 2选择标签,但我现在遇到问题,我的jsp由于select标签而抛出异常,我创建了一个数组列表,我将其传递给'list 'select标签的属性,我也定义了getters&该列表的setter以及select标签的name属性元素,我对于我新创建的每个select标签反复出现异常。

org.apache.jasper.JasperException: tag 'select', field 'list', name 'division':
The requested list key 'divisionList' could not be resolved as a collection/array/map/enumeration/iterator type. Example: people or people.{name} - [unknown location]

请提前帮助谢谢。

1 个答案:

答案 0 :(得分:1)

我在我的应用程序中成功使用了这个select标签。没有例外。更改适当的属性名称。如果这不能解决您的问题,请将您的代码和更多说明发送给我。

<html:select style="width:192px" name="VForm" property="classificationName" >
     <html:optionsCollection property="comboList"/>
</html:select>

由于 姆兰