<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-hystrix</artifactId> </dependency> @Service public class MyService { @HystrixCommand(fallbackMethod = "fallbackMethod") public String myMethod() { // ... } public String fallbackMethod() { // ... } } @SpringBootApplication @EnableCircuitBreaker public class Application { // ... }


上一篇:
下一篇:
切换中文