spring-cloud-alibaba
spring-cloud-alibaba copied to clipboard
how to integrate spring webflux and dubbo
i have some webflux based service, provide external service interface. how to integrate these services with dubbo service provider?
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); `
I have this problem too