gpt4 book ai didi

java - 托马克赫斯特线模。尝试连接到 8080。连接被拒绝

转载 作者:行者123 更新时间:2023-12-02 00:03:24 27 4
gpt4 key购买 nike

@Test
void resourceTo_Wired_ClientCall() {

wireMockServer = new WireMockServer(options().port(10021));
wireMockServer.start();

final MappingBuilder stubBuilder = get(urlMatching("http://demo1096495.mockable.io/client1"));

stubFor(stubBuilder
.willReturn(aResponse()
.withStatus(200)
.withHeader("Content-Type", "application/json")
.withBody("{\"something\":\"test-wired\"}")));
;

出现错误:

org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1] failed: Connection refused (Connection refused)

有什么遗漏的吗?

附注我将 WireMockServer 与 junit 5 和 spring boot 一起使用。与junit 4WireMockRule一起工作都很好。

 testCompile "com.github.tomakehurst:wiremock-jre8:2.24.1"

最佳答案

更新:

https://github.com/tomakehurst/wiremock/issues/369

添加:WireMock.configureFor("localhost", 10021);

之前 wireMockServer.start();

然后那个错误就消失了。它传递到下一行。

附注 得到了一些新东西..但那是不同的问题。

关于java - 托马克赫斯特线模。尝试连接到 8080。连接被拒绝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58168813/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com