要在項目中包含Hystrix,請使用組org.springframework.cloud和artifact id spring-cloud-starter-hystrix的啓動器。有關 使用當前的Spring Cloud發佈列表設置構建系統的詳細信息,請參閱Spring Cloud項目頁面。 示例啓動應用程序:html
@SpringBootApplication @EnableCircuitBreaker public class Application {java
public static void main(String[] args) {
new SpringApplicationBuilder(Application.class).web(true).run(args);
}
複製代碼
}web
@Component public class StoreIntegration {spring
@HystrixCommand(fallbackMethod = "defaultStores")
public Object getStores(Map<String, Object> parameters) {
//do stuff that might fail
}
public Object defaultStores(Map<String, Object> parameters) {
return /* something useful */;
}
複製代碼
} @HystrixCommand由名爲「javanica」的Netflix contrib庫提供 。Spring Cloud在鏈接到Hystrix斷路器的代理中使用該註釋自動包裝Spring bean。斷路器計算什麼時候打開和關閉電路,以及在發生故障時應該作什麼。ui
要配置@HystrixCommand,您可使用commandProperties屬性列出@HystrixProperty註釋。請參閱 這裏 瞭解更多詳情。有關 可用屬性的詳細信息,請參閱Hystrix維基。spa
源碼來源:http://minglisoft.cn/honghu/technology.html代理