Tag: springwebflux

  • How to consume a large response using Spring WebClient?

    Spring WebClient is a new library provided by Spring to call REST services. It can be used to call rest services in an asynchronous way. Spring team is planning to retire RestTemplate and so it is better to start using Spring WebClients in your projects even for synchronous calls. And if you do use Spring…

  • How to create a reactive REST service using Spring WebFlux?

    Reactive programming is gaining more popularity now than ever before. Traditionally when you invoke a REST service it becomes a blocking call. You need to wait until you get the response and then proceed with your next line of code. With reactive programming , you can make an asynchronous call and then retrieve the response…