使用Postman传递arraylist数据给springboot方式
程序员文章站
2022-03-05 16:37:03
目录使用postman传递arraylist数据给springboot首先确定你的请求方式是什么后端接收的方法postman传递arraylist参数给springboot的controller使用p...
使用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
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。
上一篇: javaCV视频处理之提取人像视频
下一篇: 基于深度学习和OpenCV实现目标检测