概述
使用Postman传递arraylist数据给springboot
起因:需要做一个批量删除的功能,后台接收一个ArrayList ids 。
但是菜鸡小王不晓得postman 怎么传递集合数据给后端进行测试。
这个时候就只好发灰出csdn和百度的强大之处。
首先确定你的请求方式是什么
填写你的url路径
在这边补充一句 对象也是这样传递 以一个json 格式传递给后端。
后端接收的方法
/* * 根据id 批量删除 * @Param [ids] * @return com.crush.reponse.CommonsResponse **/ @UseToken @DeleteMapping("/") @PreAuthorize("hasAuthority('ADMIN')") public CommonsResponse newsByType(@RequestBody ArrayList<Integer> ids){ return new CommonsResponse(newsService.deleteNewsById(ids)); }
这里的@RequestBody用于读取Http请求的body部分数据——就是我们的请求数据。
比如json或者xml。然后把数据绑定到 controller中方法的参数上,这里就是String json这个入参啦~
Postman传递arraylist参数给springboot的controller
以上为个人经验,希望能给大家一个参考,也希望大家多多支持靠谱客。
最后
以上就是现实美女为你收集整理的使用Postman传递arraylist数据给springboot方式的全部内容,希望文章能够帮你解决使用Postman传递arraylist数据给springboot方式所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复