Hi all,
I have Struts 1 / JSP web application. In the JSP I need to define List bean and pass value to it.
<bean:define id="beanName" type="java.util.List" value=""/>
does not work. It says I should pass in NNULL value.
<bean:define id="beanName" type="java.util.List" value="<%= new ArrayList() =>"/>
does not work either - it says it could accept only String type parameters.
Could someone point me out - how could I achieve this?
Thanks in advance for any suggestions.