I\'m trying to populate a List of beans from a form:
public class Foo { public String attr1; public String attr2; } public class Bar { public List&
If I understand it correctly, you just want different name for each hidden field?
which should give you the equivalent of
If you have proper getter/setter, it should set all the values when the form is being submitted.