Spring Cloud Netflix Hystrix – the fault tolerance library, use it for circuit breaker (断路器)
tolerate failures up to a threshold and then leaves the circuit open - forward all subsequent calls to the fallback method, to prevent future failures
Hystrix
Add e @EnableCircuitBreaker
For the Circuit Breaker to work, Hystix will scan @Component or @Service annotated classes for @HystixCommand annotated methods, implement a proxy for it and monitor its calls.