I\'m trying to bind one of my model objects to the fields of a form, using Spring-MVC. Everything works fine, except that one of the attributes of the model object is an unorder
found perfect solution here: http://forum.springsource.org/showthread.php?45312-Submitting-arrays
general idea - using commons-collections methods to init list:
private List someList = LazyList.decorate(new ArrayList(), FactoryUtils.instantiateFactory(com.abc.xyz.SomeClass.class));