1.postman测试传入List<String>参数方式
http://www.zzvips.com/article/206812.html
2.关于postman的form-data如何传递数组形式
https://blog.csdn.net/chrispaul610/article/details/117294103
________________________________________________________________________________________________________________
postman测试传入List<String>参数方式
这篇文章主要介绍了postman测试传入List<String>参数方式,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
目录
- postman测试传入List<String>参数
- 第一步:设置headers
- 第二步:传值参数list<String>
- 第三步:
- 使用postman传List参数
- 1、后台部分
- 2、postman部分
postman测试传入List<String>参数
第一步:设置headers
Content-type 的值为application/json
第二步:传值参数list<String>
在body中,传值参数,list<String> 使用[]括起来
第三步:
controller层设置两个注解@ResponseBody 和@RequestBody
@ResponseBody 没有该注解的时候,会发生postman 请求找不到error 404;
@RequestBody 没有该注解的时候,会发生参数值传输不过去;
使用postman传List参数 ,如果使用 Form Post方式必须在后台添加 @RequestParam
1、后台部分
2、postman部分
如果不适用注解的话,可能会抛出
No primary or default constructor found for interface java.util.List
以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/qq_31123505/article/details/90475241
标签:postman,form,传入,List,参数,测试,String From: https://www.cnblogs.com/kelelipeng/p/16744956.html