15

我正在使用 Spring 云平台开发微服务,其中 service1 调用多个其他微服务,例如 service2、service3、service 4 等。这些服务可以并行调用,service1 将聚合结果。我可以使用 Spring cloud feign ( http://cloud.spring.io/spring-cloud-static/Dalston.SR1/#spring-cloud-feign ) 来生成 rest 客户端并异步调用服务还是应该使用 Spring 4 AsyncRestTemplate异步调用服务?

4

1 回答 1

4

我已经使用 CompletableFuture 使用 feign 客户端将异步调用链接到多个微服务,但最终并没有成功。请通过以下链接了解更多信息。我的理解是 - Feign 不是为异步调用或零拷贝 i/o 设计的。

https://github.com/OpenFeign/feign/issues/361

于 2018-07-09T18:54:17.120 回答