美文网首页
IDEA自带http请求工具

IDEA自带http请求工具

作者: 尚水杨 | 来源:发表于2020-08-13 11:07 被阅读0次

编辑http请求文件(文件名后缀为.http)

GET请求

GET http://localhost:8080/bcdb/sign
Accept: */*
Cache-Control: no-cache

###

POST请求

POST http://localhost:8080/bcdb/sign
Accept: */*
Cache-Control: no-cache
Content-Type: application/json

{
  "id":1,
  "acNo":"123456"
}

###
http.png

执行http请求

http2.png

查看http结果

http3.png

相关文章

网友评论

      本文标题:IDEA自带http请求工具

      本文链接:https://www.haomeiwen.com/subject/lxdbdktx.html