postman各种参数传递调试

1.RequestBody 传递
--对象
@RequestMapping("/user/login") public ResponseResult login(@RequestBody User user){ ResponseResult result = sysUserService.login(user); return result; }


--数组,集合同数组
@RequestMapping("/test") public String test(@RequestBody Integer[] ids){ String result=String.valueOf(Arrays.toString(ids)); return result; }

2.路径参数传递
@RequestMapping("/test/{id}") public String test(@PathVariable Integer id){ String result=String.valueOf(id); return result; }

3.请求参数RequestParam 传递
--数组,对象,集合同
@RequestMapping("/test") public String test(@RequestParam List<Integer> ids){ String result=String.valueOf(ids.toString()); return result; }

4.文件参数传递

posted @ 2024-01-24 17:17  食来运转  阅读(587)  评论(0)    收藏  举报