欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

postman传参 既有String又有Map类型

程序员文章站 2022-04-10 14:37:39
...

postman传多类型参数

  • 对于这种情况只需要将Map或者List前面加上@RequestBody注解,将String,Integer等基本类型前面加上@RequestParam注解即可
  • 参数既有map又有string
 /**
     * 添加承台信息
     * @param map         添加信息
     * @param table_name  添加的表名
     * @RequestBody  传List 或者Map
     * @RequestParam  传String,Integer
     * 当参数上面既有map又有基本类型的时候,要加上这两个注解
     * @author csz
     * @data 2020/3/27
     * @return
     */
    @RequestMapping("/insertInfo")
    @ResponseBody
    public ResultCode insertInfo(  @RequestBody Map<String,Object> map,
                                    @RequestParam  String table_name) {

postman传参 既有String又有Map类型

  • 参数既有list又有integer
   public String addUserRole(@RequestParam("userId")Long userId,
                              @RequestBody List<Long> roleIdList)

postman传参 既有String又有Map类型

相关标签: postman