Я тестирую этот верблюжий маршрут:
from("direct:start")
.setHeader(Exchange.HTTP_METHOD, constant("GET"))
.to("http://127.0.0.1:8088/")
.to("mock:result");
... используя этот фиктивный сервер:
mockServer = MockRestServiceServer.createServer(new RestTemplate());
mockServer.expect(
requestTo("http://127.0.0.1:8088/"))
.andExpect(method(HttpMethod.GET))
.andRespond(withStatus(HttpStatus.OK)
.contentType(MediaType.APPLICATION_JSON)
.body("")
);
... но получаю:
I/O exception (java.net.ConnectException) caught when processing request: Connection refused: connect
Есть ли что-то очевидное, что мне не хватает?Как мне найти причину?