alibaba / spring-cloud-alibaba

Spring Cloud Alibaba provides a one-stop solution for application development for the distributed solutions of Alibaba middleware.
https://sca.aliyun.com
Apache License 2.0
28.02k stars 8.35k forks source link

how to integrate spring webflux and dubbo #1395

Open shihuaguo opened 4 years ago

shihuaguo commented 4 years ago

i have some webflux based service, provide external service interface. how to integrate these services with dubbo service provider?

shihuaguo commented 4 years ago

because webflux method return mono or flux, can i use dubbo async call like this? ` dubboService.call();

var future = RpcContext.getContext().getCompletableFuture(); return Mono.fromFuture(future); `