依賴:
成都創(chuàng)新互聯(lián)專注于企業(yè)成都全網(wǎng)營銷推廣、網(wǎng)站重做改版、香河網(wǎng)站定制設(shè)計、自適應(yīng)品牌網(wǎng)站建設(shè)、H5開發(fā)、成都商城網(wǎng)站開發(fā)、集團公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計等建站業(yè)務(wù),價格優(yōu)惠性價比高,為香河等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-commons</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-alibaba-sentinel</artifactId>
</dependency>
配置注入:
@Bean
@LoadBalanced
// 讓 RestTemplate 支持 Sentinel 限流
@SentinelRestTemplate(
blockHandler = "blockHandlerFunc",
fallback = "fallbackFunc",
blockHandlerClass = MyBlockHandlerClass.class
)
public RestTemplate restTemplate(){
return new RestTemplate();
}
異常處理類:
@Slf4j
public class MyBlockHandlerClass {
public static String blockHandlerFunc(String a, BlockException e){
log.warn("限流了",e);
return "";
}
public static String fallbackFunc(String a){
log.warn("降級了");
return "";
}
}
調(diào)用:
@Autowired
RestTemplate restTemplate;
this.restTemplate.getForObject("http://user-center/users/{id}", Users.class,article.getId());
配置開關(guān):
resttemplate:
# 關(guān)閉 @SentinelRestTemplate 作用,開發(fā)環(huán)境可以臨時關(guān)閉: 降級,限流
sentinel:
enabled: false
本文名稱:Sentinel-結(jié)合RestTemplate(四)
網(wǎng)頁網(wǎng)址:http://jinyejixie.com/article38/gdpdpp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供小程序開發(fā)、App設(shè)計、Google、域名注冊、建站公司、網(wǎng)站策劃
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)