Struts _ usar coleçoes para as opções

tenho um jsp que lista os dados desrta maneira:
NOME : <bean:write name=“funcionario” property=“nome”/><br>
IDADE: <bean:write name=“funcionario” property=“idade”/><br>
isto está OK…

na mesma classe que estão os parametro acima citados, tenho uma coleção item, mas não estou conseguindo listar, o mesmo pela seguinte forma…

<html:select property=“funcionario”>
<html:options collection=“item”/>
</html:select>

a mensagem de erro é a seguinte…]
Cannot find bean under name org.apache.struts.taglib.html.BEAN…

Alguém poderia me ajudar???

Cara, tenta algo assim:


&lt;logic&#58;notEmpty name=&quot;collectionFuncionarios&quot; scope=&quot;request&quot; &gt;
   &lt;html&#58;select property=&quot;nome_do_campo_no_form&quot;&gt;
      &lt;html&#58;options collection=&quot;collectionFuncionarios&quot; property=&quot;id&quot; labelProperty=&quot;name&quot; /&gt;
   &lt;/html&#58;select&gt;
&lt;/logic&#58;notEmpty&gt;