详解Idea中HTTP Client请求测试工具的使用
前言:
以前在本地测试一些接口,我都是使用postman,偶然发了idea自带的请求测试工具http client,我就开始使用http client了,但是在某些下载流类接口的测试中,还是要使用postman,但是普通的接口http client已经足够满足的需求。
正文:
使用http client的idea版本最好在2018以上,不然体验感不是很好。下面,我将介绍一下,这个怎么使用。
1.使用入口:
方式一:在controller类中,方法旁边有一个小三角,如果不要携带任何参数,就可以直接点击run http request,如果需要携带参数,点击open in http request editor,进行配置文件编辑(idea 2018 以下版面没有此三角按钮)。
方式二: 点击tool,再点击http client,再点击 test restful web service,进入到rest client 窗口。
2.使用:
点击open in http request editor,进入以.http结尾的配置文件。
使用一:get请求,url携带参数:
使用二:get请求,url携带参数,并且携带header:
使用三: post请求,body中有数据,并且携带header:
application/x-www-form-urlencoded
application/json
使用四:根据环境变量选择执行参数:
环境变量配置文件:
私有的环境配置文件,建议不要提交git:
使用五:模拟登陆,获取access_token,并保存为全局变量,然后其他接口测试可以使用:
使用六:上传文件:
post http://localhost:9091/upload accept: */* cache-control: no-cache content-type: multipart/form-data; boundary=webappboundary --webappboundary content-disposition: form-data; name="file"; filename="test_a.xlsx" content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet # 文件上传路径 < c:\users\desktop\test_a.xlsx --webappboundary--
以上就是详解idea中http client请求测试工具的使用的详细内容,更多关于idea中http client使用的资料请关注其它相关文章!
上一篇: 隐性调用php程序的方法