I'm using a SimpleFormController with a bean that has a collection property. Consider for example a orders property (a List of Orders), on a Customer bean. Is it possible to bind the parameters on the nested Order bean using the standard property paths as request parameter names?
In other words, will a form parameter name likeresult in a call likeCode:customer.order[0].productIdWhat is the best approach here?Code:customer.getOrder().get(0).setProductId
Thanks!


Reply With Quote