跳至主要內容

http测试插件

chanchaw小于 1 分钟languagejava

概述

IDEA 中可以通过编写代码测试 http 请求

案例

微服务实战电商 项目的模块 ecomm-authority-center 的路径 resources/http 下有测试 http 请求的文件,测试案例如下,注意文件后缀名为 http

### 测试 get 请求
GET http://localhost:8000/ecomm-nacos-client/nacosClient/serviceInstance
Accept: application/json

### 获取token
POST http://localhost:7201/ecomm-authority-center/authority/loginToken
Content-Type: application/json
### 这里必须有一行空白,否则报错
{
"username":"11",
"password":"111"
}