SpringMVC接收复杂集合参数,集合对象

Spring MVC在接收集合请求参数时,需要在Controller方法的集合参数里前添加@RequestBody,而@RequestBody默认接收的enctype (MIME编码)是application/json,因此发送POST请求时需要设置请求报文头信息,否则Spring MVC在解析集合请求参数时不会自动的转换成JSON数据再解析成相应的集合。以下列举接收List<Integer>、List<User>、List<Map<String,Object>>、User[]、User(bean里面包含List)几种较为复杂的集合参数示例:

  • 一、接收List<Integer>集合参数:

1、页面js代码:

Js代码

var arr = [1,2,3];
$.jBox.confirm("确定要删除数据吗?", "warning",function () {
    $.ajax({
       type: ‘get‘,
       url: ‘${base.contextPath}/giving/index/del‘,
       dataType: ‘json‘,
       data: {ids: arr},
       success: function (result) {
          …
       },
       error: function (result) {
          …
       }
   })
})

2、Controller方法:

Java代码

@Controller
@RequestMapping("/wxgiving")
public class WxGivingController{
  @RequestMapping(value = "/index/del", method = RequestMethod.GET)
  @ResponseBody
  public ReturnMsg del (@RequestParam(value = "ids[]")List <Integer> ids){
     …
  }
}
  • 接收List<User>、User[]集合参数:

1、User实体类:

Java代码

public class User {
  private int id;
  private String name;
  private String pwd;
  //省略getter/setter
}

2、页面js代码:

Js代码

//可以找前端拼成这种类型
var userList = new Array();
userList.push({name: "张三",pwd: "123"});
userList.push({name: "李四",pwd: "223"});
$.ajax({
    type: "POST",
    url: "${base.contextPath}/user/index/add",
    data: JSON.stringify(userList),//将对象序列化成JSON字符串
    dataType:"json",
    contentType : ‘application/json;charset=utf-8‘, //设置请求头信息
    success: function(result){
        …
    },
    error: function(result){
        …
    }
  });

3、Controller方法:

Java代码

@Controller
@RequestMapping(value = "/user")
public class UserController(){
  @RequestMapping(value = "/index/add", method = RequestMethod.POST)
  @ResponseBody
  public ReturnMsg addOrEdit(@RequestBody List<User> userList) {
     …
  }
}

如果想要接收User[]数组,只需要把add的参数类型改为@RequestBody User[] userArray就行了。

  • 接收List<Map<String,Object>>集合参数:

1、页面js代码(不需要User对象了):

Js代码

  1. var userList = new Array();
    userList.push({name: "张三",pwd: "123"});
    userList.push({name: "李四",pwd: "223"});
    $.ajax({
        type: "POST",
        url: "${base.contextPath}/user/index/add",
        data: JSON.stringify(userList),//将对象序列化成JSON字符串
        dataType:"json",
        contentType : ‘application/json;charset=utf-8‘, //设置请求头信息
        success: function(result){
            …
        },
        error: function(result){
            …
        }
      });

2、Controller方法:

Java代码

  1. @Controller
    @RequestMapping(value = "/user")
    public class UserController(){
      @RequestMapping(value = "/index/add", method = RequestMethod.POST)
      @ResponseBody
      public ReturnMsg addOrEdit(@RequestBody List<Map<String,Object>> listMap) {
        …
      }
    }
  • 接收User(bean里面包含List)集合参数:

1、User实体类:

Java代码

  1. public class User {
      private int id;
      private String name;
      private String pwd;
      private List<User> userList;
      //省略getter/setter
    }

2、页面js代码:

Js代码

  1. var userArray= new Array();
    userArray.push({name: "张三",pwd: "123"});
    userArray.push({name: "李四",pwd: "223"});
    var user = {};
    user.name = "王五";
    user.pwd = "888";
    user.userList= userArray;
    $.ajax({
        type: "POST",
        url: "${base.contextPath}/user/index/add",
        data: JSON.stringify(user),//将对象序列化成JSON字符串
        dataType:"json",
        contentType : ‘application/json;charset=utf-8‘, //设置请求头信息
        success: function(result){
            …
        },
        error: function(result){
            …
        }
      });

3、Controller方法:

Java代码

  1. @Controller
    @RequestMapping(value = "/user")
    public class UserController(){
      @RequestMapping(value = "/index/add", method = RequestMethod.POST)
      @ResponseBody
      public ReturnMsg addOrEdit(@RequestBody User user) {
        List<User> userList= user.getUserList();

原文地址:https://www.cnblogs.com/yangchuncool/p/9244190.html

时间: 2024-10-08 18:50:46

SpringMVC接收复杂集合参数,集合对象的相关文章

springMVC通过ajax传递参数list对象或传递数组对象到后台

springMVC通过ajax传递参数list对象或传递数组对象到后台 环境: 前台传递参数到后台 前台使用ajax 后台使用springMVC 传递的参数是N多个对象 JSON对象和JSON字符串 在SpringMVC环境中,@RequestBody接收的是一个Json对象的字符串,而不是一个Json对象.然而在ajax请求往往传的都是Json对象,用 JSON.stringify(data)的方式就能将对象变成字符串.同时ajax请求的时候也要指定dataType: "json",

springmvc接收List型参数长度

springmvc默认接收list参数长度为256,过长则报越界异常,添加 @InitBinder public void initBinder(WebDataBinder binder) { // 设置List的最大长度 binder.setAutoGrowCollectionLimit(10000); } 则ok! 原文地址:https://www.cnblogs.com/xiaoheis/p/8297105.html

springMvc接收json和返回json对象

导入三个包 页面: function sendJson(){ //请求json响应json $.ajax({ type:"post", url: "${pageContext.request.contextPath }/upload/testJson", contentType:"application/json;charset=utf-8", data:'{"username":"张三", "p

SpringMVC 接收ajax发送的数组对象

JavaScript 代码: <script type="text/javascript">       $(document).ready(function(){           var saveDataAry=[];           var data1={"userName":"test","address":"gz"};           var data2={"use

springmvc后台接前端的参数,数组,集合,复杂对象等

springmvc后台接前端的参数,数组,集合,复杂对象等 参考地址:https://blog.csdn.net/feicongcong/article/details/54705933 常用的几种方式如下: (1)数组: 后台 @ResponseBody @RequestMapping(value = "/ajaxsortPriority") public ResultDo ajaxsortPriority(@RequestParam("ids[]") Long[

Spring MVC在接收复杂集合参数

Spring MVC在接收集合请求参数时,需要在Controller方法的集合参数里前添加@RequestBody,而@RequestBody默认接收的enctype (MIME编码)是application/json,因此发送POST请求时需要设置请求报文头信息,否则Spring MVC在解析集合请求参数时不会自动的转换成JSON数据再解析成相应的集合.以下列举接收List<String>.List<User>.List<Map<String,Object>&g

spring mvc 如何从前台表单传递集合参数并绑定集合对象

前端传递集合: <tr>    <td>    <select name="indtablelist[0].commodity_id">        <c:forEach items="${commoditys}" var="comm">        <option value="${comm.id}">${comm.commodity_no}||${comm.c

spring mvc 如何传递集合参数(list,数组)

spring mvc 可以自动的帮你封装参数成为对象,不用自己手动的通过request一个一个的获取参数,但是这样自动的参数封装碰碰到了集合参数可能就需要点小技巧才可以了. 一.基础类型和引用类型有什么区别? 基础类型是直接保存在堆栈上面的,引用类型(对象)值保存在堆上面,地址保存在栈上面的,基础类型都有非null的默认值,比如int默认是0,boolean默认是false,引用类型除非是用new开辟出新的空间,否则只有地址信息没有值信息.int 和 integer的区别不仅是有没有默认值的问题

Java:List集合内的对象进行排序

List集合中的对象进行排序,除了for外,还有java的Collections对象来对摸个集合进行排序的用法. 比如说我有一个List集合,集合元素为: public class TaskAutoExecutePlan{ private String id = null; private AutoExecutePlanType autoExecutePlanType; private TaskStatus taskStatus; private String parameters; priva