Hi,
Am having a command object which has a List type field. For example, Customer can have multiple addresses and so am having it as a List
<code>
public class Customer{
private String customerName;
private List<Address> address;
--getters and setters--
}
</code>
My question is to how do i map the form fields with this command object. My form will have fields for entering 2 addresses. What should be given in the path attribute of the <form:input tag.
any help is appreciated.
Thanks


Reply With Quote