我的模拟服务器通过端口8443在apache https连接器上运行。但是当我尝试使用以下内容加载期望时,它什么也没做。然而,当我使用http连接器时,它就像一个魅力。
new MockServerClient(ip, Integer.parseInt(port), contextPath)
.when(request, times, timeToLive)
.respond(response);
根据我的理解,它将使用http连接器,所以我也试过
MockServerClient client = new MockServerClient(ip, Integer.parseInt(port), contextPath);
HttpForward httpForward = new HttpForward()
.withHost(ip)
.withPort(Integer.parseInt(port))
.withScheme(HttpForward.Scheme.HTTPS);
// when
ForwardChainExpectation forwardChainExpectation = client.when(request);
forwardChainExpectation.forward(httpForward);
我错过了什么? 模拟服务器可以通过https连接器工作吗?