Spring Cloud Netflix—如何加入Hystrix

blingbling1發表於2018-03-07

要在專案中包含Hystrix,請使用組org.springframework.cloud和artifact id spring-cloud-starter-hystrix的啟動器。有關 使用當前的Spring Cloud釋出列表設定構建系統的詳細資訊,請參閱Spring Cloud專案頁面。 示例啟動應用程式:

@SpringBootApplication @EnableCircuitBreaker public class Application {

public static void main(String[] args) {
    new SpringApplicationBuilder(Application.class).web(true).run(args);
}
複製程式碼

}

@Component public class StoreIntegration {

@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。斷路器計算何時開啟和關閉電路,以及在發生故障時應該做什麼。

要配置@HystrixCommand,您可以使用commandProperties屬性列出@HystrixProperty註釋。請參閱 這裡 瞭解更多詳情。有關 可用屬性的詳細資訊,請參閱Hystrix維基。

原始碼來源:http://minglisoft.cn/honghu/technology.html

相關文章