How to use Spring WebClient to invoke REST services reactively and non reactively?

Let’s say you want to invoke a reactive REST service developed using Spring WebFlux. A reactive REST service is one which lets you invoke itself asynchronously. You either get a Mono response (for a single object response) or a Flux response (for multiple objects). Here is a demo of how to call a reactive REST … Continue reading How to use Spring WebClient to invoke REST services reactively and non reactively?