目录
1.1 spring 以 @RequestParam 解析简单数组
1.2 spring 以 @RequestBody 解析简单数组
2.1 spring 以 @RequestParam 解析简单列表
2.2 spring 以 @RequestBody 解析简单列表
2.3 spring 以 @RequestBody 解析列表对象
3.1 spring 以 @RequestParam 解析map
3.2 spring 以 @RequestBody 解析map
一 Array
1.1 spring 以 @RequestParam 解析简单数组
@RequestMapping(value = "/getByIds" ,method = RequestMethod.POST)
public RetDTO getByIds(@RequestParam(value = "ids") Long[] ids){
return RetDTO.getReturnJson(userService.getByIds(ids));
}
postman 请求方式一
postman 请求方式二
postman 请求方式三
postman 请求方式四
1.2 spring 以 @RequestBody 解析简单数组
@RequestMapping(value = "/getByIds" ,method = RequestMethod.POST)
public RetDTO getByIds(@RequestBody Long[] ids){
return RetDTO.getReturnJson(userService.getByIds(ids));
}
postman 请求方式
二 List
2.1 spring 以 @RequestParam 解析简单列表
@RequestMapping(value = "/getByIds" ,method = RequestMethod.POST)
public RetDTO getByIds(@RequestParam("ids") List<Long> ids){
return RetDTO.getReturnJson(userService.getByIds(ids));
}
postman 请求方式一
postman 请求方式二
2.2 spring 以 @RequestBody 解析简单列表
@RequestMapping(value = "/getByIds" ,method = RequestMethod.POST)
public RetDTO getByIds(@RequestBody List<Long> ids){
return RetDTO.getReturnJson(userService.getByIds(ids));
}
postman 请求方式
2.3 spring 以 @RequestBody 解析列表对象
@RequestMapping(value = "/getByIds" ,method = RequestMethod.POST)
public RetDTO getByIds(@RequestBody List<User> userList){
return RetDTO.getReturnJson(userService.getByIds(userList));
}
postman 请求方式
三 Map
3.1 spring 以 @RequestParam 解析map
@RequestMapping(value="/getById", method=RequestMethod.GET)
public RetDTO<User> getById(@RequestParam Map<String, Long> map) {
return RetDTO.getReturnJson(userService.getUserById(map.get("id")));
}
postman 请求方式
3.2 spring 以 @RequestBody 解析map
@RequestMapping(value="/getById", method=RequestMethod.GET)
public RetDTO<User> getById(@RequestBody Map<String, String> map) {
return RetDTO.getReturnJson(userService.getUserById(map));
}
微信公众号:「新猿一马」,微信扫一扫。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/9506.html