up vote 0 down vote favorite
share [g+] share [fb]

I am displaying values from a set on a bean called AttributeDefinition which has a Set of ValidValues. I am able to display the set and change the values using the JSP below:

<c:forEach items="${attributeDefinition.validValues}" var="validValue" varStatus="validValueRow">
    <form:hidden path="validValues[${validValueRow.index}].id"/>
    <tr>
        <td><form:input path="validValues[${validValueRow.index}].value"/></td>
    </tr>
</c:forEach>

However, I want to be able to add an element to this set and have tried a few things and looked at the documentation, but I am unsure if this is possible with a Set, or if I have to do some conversion between a LazyList and my Set. Can someone let me know how to achieve this in the jsp and what code needs to be added to my controller? The Spring MVC documentation/book leave a lot to be desired.

link|improve this question

73% accept rate
The docs may be unclear, but so is this question. If you're trying to modify a collection, why are you showing us a JSP? – skaffman Sep 1 '10 at 18:07
Sorry if it is unclear. I'm showing the JSP because I am unsure if there is some spring "glue" that should go into the JSP. On the java side, I can use a LazyList to work with this JSP, with a set it does not work at all. I am not sure if Spring does not support sets in this usage at all. – bowsie Sep 6 '10 at 7:16
feedback

1 Answer

For others coming across this issue, I've found that LazyList is the only way to dynamically add elements to a collection. If you are using a Set to hold your collection, you will need to map to and from the LazyList in your Spring Controller.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.