To apply more effective resilience to endpoint executions, Spring Cloud Netflix Ribbon is sometimes paired with Spring Cloud Netflix Hystrix, which is built through the circuit breaker design pattern whose objective is to rescue client applications from shutting down due to faulty ResponseEntity or undefined Mono<T> and Flux<T> responses.
Applying resiliency to client applications
Getting started
Create a typical Spring Boot 2.0 project named as ch10-hystrix that will focus on the independent configuration and setup of Hystrix.
How to do it...
Implement recovery...