spring接收对象数组实例

JS

var param= new Array();
var one= new Object;
one.id = '1';
one.name= 'simba1';
param.push(one);

var two= new Object;
two.id = '2';
two.name= 'simba2';
param.push(two);

$.ajax({
async : false,
cache : false,
type : 'POST',
dataType:"json",      
            contentType:'application/json;charset=UTF-8',
url : 'test.htm',
data : JSON.stringify(param),
error : function(data) {
  alert("载入数据错误,请重试!");
   },
success : function(data) {

}
});


JAVA

POJO

public class Test{

public Long Id;

public String name;

get***

set**

}



controller

@RequestMapping(value = "test.thm", method = RequestMethod.POST)
    @ResponseBody
    public Boolean editQhbPrizeChance(@RequestBody Test[] test) {

}

原文地址:https://www.cnblogs.com/zhchoutai/p/7120730.html