Is it possible for a RestTemplate
to consume an endpoint which is reactive based (Spring WebFlux)? I understand that the main idea of reactive programming is to avoid blocking and make better use of threads (eliminate thread per connection model) so what happens if my Client is non reactive?
- Will I still be able to call the service even if it is in a blocking manner?
- To achieve full reactiveness (non blocking) both Client and Server must be reactive?