SpringCloud使用Sentinel 代替 Hystrix

varyall發表於2019-02-11

本文基於springboot-2.0.6RELEASE+cloud-F.SR2

Feign環境下:只需兩步
1.在原使用hystrix的模組中新增如下依賴:

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-alibaba-sentinel</artifactId>
    <version>0.2.1.RELEASE</version>
</dependency>
2.在application.yml 中新增feign.sentinel.enabled=true 即可為Feign啟用Sentinel支援:

# 去掉
# feign.hystrix.enabled: true
# 改為如下即可
feign.sentinel.enabled: true
Ribbon環境下:
1.先去除Spring Cloud Netflix Hystrix( spring-cloud-starter-netflix-hystrix )的依賴,再新增sentinel依賴

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-alibaba-sentinel</artifactId>
    <version>0.2.1.RELEASE</version>
</dependency>
2.再在構造RestTemplate的時候加上@SentinelRestTemplate註解即可

@Bean
@SentinelRestTemplate
public RestTemplate restTemplate() {
    return new RestTemplate();
}
--------------------- 
作者:Mr_lyh 
來源:CSDN 
原文:https://blog.csdn.net/Mr_lyh/article/details/86700810 
版權宣告:本文為博主原創文章,轉載請附上博文連結!

相關文章