作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
@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 4
和WireMockRule
一起工作都很好。
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/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!