Postman实现并发请求

一、Postman

Postman 是一个款 HTTP 请求模拟工具
Postman实现并发请求_第1张图片

二、请求演示

首先演示一下 Postman 最基本的使用,创建一个 Spring Boot 项目,测试的代码如下:

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("test")
public class TestConrtoller {

    @GetMapping("demo")
    public String testDemo() {
        return "result~";
    }
}

Postman实现并发请求_第2张图片
为了便于操作,一般会将
http://127.0.0.1:8080 是经常使用的地址+端口号,可以设置为环境,点击右上角的设置图标
Postman实现并发请求_第3张图片
Postman实现并发请求_第4张图片
Postman实现并发请求_第5张图片
以后再进行测试就能这样搞简写了
Postman实现并发请求_第6张图片

三、测试并发

Postman实现并发请求_第7张图片
Postman实现并发请求_第8张图片
Postman实现并发请求_第9张图片
Postman实现并发请求_第10张图片
Postman实现并发请求_第11张图片
Postman实现并发请求_第12张图片
点击 Run Concurrency
你可以立马感觉到 CPU 在“燃烧”,因为要记录并打印日志,显示的话是一条一条来的,其实测试的速度,要比你看到的打印的日志的速度快,绿色表示正常
Postman实现并发请求_第13张图片

你可能感兴趣的:(工具类,+,Postman并发操作,postman,java,spring,boot)