SpringBoot FeignClient vs WebClient

23.9k views Asked by At

I want to consume a couple of rest services. Before, I used RestTemplate, but now I want to know The main differences between Spring Boot FeignClient and WebClient.

When should they be used?

3

There are 3 answers

0
Ithar On BEST ANSWER

To be able to answer “when” one needs to understand the capabilities of each.

Spring WebClient is a non-blocking reactive client to make HTTP requests. Hence if you intend to use Spring Reactive Stream API to stream data asynchronously then this is the way to go. Think event-driven architecture. WebClient is part of the Spring WebFlux library.

[Feign]3 is a declarative REST library that uses annotations based architecture with thread-per-request model. This means that the thread will block until the feign client receives the response. The problem with the blocking code is it must wait until the consuming thread completes, hence think memory and CPU cycles.

So use Spring WebClient when needing non-blocking HTTP requests otherwise Feign due to simple usage model.

(Note: There is no reason as to why one cannot use WebClient for blocking operations but Feign is more mature and it’s annotation based model makes it easier)

0
zeletrik On

The main difference is that WebClient supports Reactive calls. You can achieve that with 3rd party feign clients like https://github.com/Playtika/feign-reactive but basically for a reactive way you should consider using WebClient with some neat async connector like Jetty. On the other hand, If you want a blocking way with minimal hassle then Feign could be your best choice.

1
Amin Hosseini On

WebClient is a non-blocking reactive.

Feign is blocking.