If I have a list object I know that I can bind class property fields to form using the code below.
<c:forEach items="${items}" var="i" varStatus="itemsRow">
<input name="items[${itemsRow.index}].fieldName" type="text"/>
</c:forEach> <form:errors path="items" />
What do I do if the property is a Set object. I have read about initBinder in the Controller class but it does not work. Can anyone paste code here to accomplish this??