后台用一个对象entity接收,对象中包含这个产品列表的list,如list,
页面上
<input type='text' name='list[0].produtName' value=''> <input type='text' name='list[0].produtType' value=''> .....(把你要传的产品的属性的表单写进来)
<input type='text' name='list[1].produtName' value=''> <input type='text' name='list[1].produtType' value=''> .....
<input type='text' name='list[2].produtName' value=''> <input type='text' name='list[2].produtType' value=''> .....
@requestMapping("xx")
public String xx(@RequestParam("entity") Entity entity){
List list = entity.getList();
}