作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我为 HTTP 请求编写了以下wiremock 代码,以在 Jmeter 中进行负载测试:
当我在 Eclipse 中运行它时,出现以下错误:
谁能帮我解决这个问题吗?
最佳答案
您指定了两个不同的端口号 8081、8080
wiremock 将仅在指定端口上运行,下面的代码适用于 localhost:8080/abc/xyz
package com.wiremock;
import com.github.tomakehurst.wiremock.WireMockServer;
import com.github.tomakehurst.wiremock.client.WireMock;
import
com.github.tomakehurst.wiremock.stubbing.StubMapping;
import static
com.github.tomakehurst.wiremock.client.WireMock.*;
public class WireMockMain {
public static void main(String[] args) {
// TODO Auto-generated method stub
WireMockServer wireMockServer = new WireMockServer(8080);
//configureFor("localhost", 8081);
wireMockServer.start();
StubMapping foo = WireMock.stubFor(get(urlPathEqualTo("/abc/xyz"))
.willReturn(aResponse()
.withStatus(200)
.withBody("{\"message\": \"Hello World\"}")));
wireMockServer.addStubMapping(foo);
}
}
关于java - Wiiremock http 失败错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51071063/
我为 HTTP 请求编写了以下wiremock 代码,以在 Jmeter 中进行负载测试: 当我在 Eclipse 中运行它时,出现以下错误: 谁能帮我解决这个问题吗? 最佳答案 您指定了两个不同的
我是一名优秀的程序员,十分优秀!