当前位置 : 主页 > 编程语言 > java >

Jmeter测试http请求

来源:互联网 收集:自由互联 发布时间:2022-10-15
修改测试计划名称: 添加线程组 设置线程组 添加HTTP请求 假设台控制器中的接口:对应路径:localhost:6001/fun1 @GetMapping(/fun1)public String fun1() { try { Thread.sleep(1000); } catch (InterruptedExceptio
  • 修改测试计划名称: image.png

  • 添加线程组 image.png

  • 设置线程组 image.png

  • 添加HTTP请求 image.png

  • 假设台控制器中的接口:对应路径:localhost:6001/fun1

@GetMapping("/fun1") public String fun1() { try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println("fun1"); return "fun1"; }
  • 设置HTTP请求基本信息 image.png image.png

  • 添加察看结果树 image.png

  • 测试 image.png- image.png

  • 结果: image.png image.png image.png

网友评论