我尝试使用Spring框架在Java中实现断路器模式here尝试失败。
您如何通过Java和Spring实现断路器模式?
最佳答案
对于简单,直接的circuit breaker implementation,请查看Failsafe。例如:
CircuitBreaker breaker = new CircuitBreaker()
.withFailureThreshold(5)
.withSuccessThreshold(3)
.withDelay(1, TimeUnit.MINUTES);
Failsafe.with(breaker).run(() -> connect());
没有变得更简单。