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 like
Code:
customer.order[0].productId
result in a call like
Code:
customer.getOrder().get(0).setProductId
What is the best approach here?
Thanks!