SpringMVC怎么获取前台传来的数组

var tollerlist = new Array();
 for(var k in objToller){
 tollerlist.push(k);
 }
 $.ajax({
 type:"post",
 url:"${rc.contextPath}/inspection/set-toller-task.json",
 dataType:"json",
 data:{workareaId:workareaId,tollerlist:tollerlist},
 success:function(data){
      <!--后面的就不说了,可以看到这个tollerlist 是一个数组-->
 }
 });
@RequestMapping(value = "/set-toller-task")
    public void setTollerTask(ModelMap model, @RequestParam("workareaId") int workareaId,
            @RequestParam("tollerlist[]") List<Integer> tollerlist) {
        
        model.addAttribute(JSON_STATUS, JSON_STATUS_OK);
    }
原文地址:https://www.cnblogs.com/soundcode/p/6520392.html