<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 {
// ...
}