Circuit breaker design pattern implementation

后端 未结 6 1790
不思量自难忘°
不思量自难忘° 2020-12-24 08:37

I have tried unsuccessfully to implement circuit breaker pattern, here, in Java using Spring framework.

How can you implement circuit breaker pattern by Java and Sp

6条回答
  •  渐次进展
    2020-12-24 09:18

    Regarding the pattern itself

    You can obtain a lot of useful information about this pattern at Martin Fowler's blog. It contains ruby implementation as well as references for implementation in other languages.

    Regarding the java spring implementation

    Please check the JRugged library. It contains the Circuit Breaker implementation in spring as well as other design patterns.

提交回复
热议问题