postman中请求参数和后端注解的关系

复制代码
一、@RequestParam

注解@RequestParam修饰的变量,在postman中是以Params的形式传递,如下图,name,password,force分别被注解@RequestParam修饰。

URL的显示如下:http://192.168.1.107:8001/api/v29+/auth?name=admin&password=123456&force=1

请求例子:

curl -X GET "http://host:port/api/v29+/auth?

name=admin&password=123456&force=1" -H "accept: application/json"

二、@RequestBody

注解@RequestBody修饰的变量,在postman中是以Body的形式传递

URL的显示如下:http://192.168.1.107:8001/api/v29+/ws/forwarder

请求例子:

curl -X PUT "http://host:port/api/v29+/ws/forwarder" -H "accept:

application/json" -H "Content-Type: application/json" -d "{ \"company\":

\"BL\", \"actioncode\": \"c2ls_get_server_terminals_status\", \"token\":

\"\", \"data\": {}, \"return\": 0, \"return_message\": \"\" }"

相关推荐
niuniu_66613 小时前
简单的自动化场景(以 Chrome 浏览器 为例)
运维·chrome·python·selenium·测试工具·自动化·安全性测试
niuniu_6661 天前
Selenium 性能测试指南
selenium·测试工具·单元测试·测试·安全性测试
莓事哒1 天前
selenium和pytessarct提取古诗文网的验证码(python爬虫)
爬虫·python·selenium·测试工具·pycharm
软件测试曦曦1 天前
如何使用Python自动化测试工具Selenium进行网页自动化?
自动化测试·软件测试·python·功能测试·测试工具·程序人生·自动化
互联网杂货铺2 天前
黑盒测试、白盒测试、集成测试和系统测试的区别与联系
自动化测试·软件测试·python·功能测试·测试工具·单元测试·集成测试
Feng.Lee2 天前
聊一聊缓存如何进行测试
功能测试·测试工具·缓存
爱学测试的雨果2 天前
Postman —— postman实现参数化
软件测试·功能测试·测试工具·lua·postman
互联网杂货铺2 天前
如何用Postman实现自动化测试?
自动化测试·软件测试·python·测试工具·测试用例·接口测试·postman
niuniu_6662 天前
安全性测试(Security Testing)
测试工具·单元测试·appium·测试·安全性测试
薄荷你玩_3 天前
简单粗暴,用浏览器调试端口绕过Selenium/Playwright/Puppeteer检测
selenium·测试工具