91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Sentinel中RestTemplate與Feign分析

發布時間:2021-11-15 17:13:42 來源:億速云 閱讀:209 作者:iii 欄目:大數據

這篇文章主要講解了“Sentinel中RestTemplate與Feign分析”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Sentinel中RestTemplate與Feign分析”吧!

Sentinel API

Github : WIKI

  • Sphu (指明要保護的資源名稱)

  • Tracer (指明調用來源,異常統計接口)

  • ContextUtil(標示進入調用鏈入口)

  • 流控規則(針對來源屬性)

    @GetMapping("/test-sentinel-api")
        public String testSentinelAPI(@RequestParam(required = false) String a) {
            String resourceName = "test-sentinel-api";
    
            ContextUtil.enter(resourceName, "user-center-service");
            // 定義一個sentinel 保護的資源,名稱是test-sentinel-api
            Entry entry = null;
            try {
    
                entry = SphU.entry(resourceName);
                // ...被保護的業務邏輯處理
                if (StringUtils.isEmpty(a)) {
                    // Sentinel 默認只會統計BlockException & BlockException的子類,如果想統計其他異常信息,添加Tracer
                    throw new IllegalArgumentException("A is not empty.");
                }
                return a;
                // block Exception: 如果被保護的資源被限流或者降級了,就會拋異常出去
            } catch (BlockException e) {
                log.error("我被限流啦!!{}", e);
                return "我被限流啦!!";
            } catch (IllegalArgumentException argEx) {
                // 統計當前異常發生次數 / 占比
                Tracer.trace(argEx);
                return "非法參數信息";
            } finally {
                if (entry != null) {
                    entry.exit();
                }
                ContextUtil.exit();
            }
        }


  • 降級規則

    @GetMapping("/test-sentinel-api")
        public String testSentinelAPI(@RequestParam(required = false) String a) {
    
            // 定義一個sentinel 保護的資源,名稱是test-sentinel-api
            Entry entry = null;
            try {
                entry = SphU.entry("test-sentinel-api");
                // ...被保護的業務邏輯處理
                if (StringUtils.isEmpty(a)) {
                    // Sentinel 默認只會統計BlockException & BlockException的子類,如果想統計其他異常信息,添加Tracer
                    throw new IllegalArgumentException("A is not empty.");
                }
                return a;
                // block Exception: 如果被保護的資源被限流或者降級了,就會拋異常出去
            } catch (BlockException e) {
                log.error("我被限流啦!!{}", e);
                return "我被限流啦!!";
            } catch (IllegalArgumentException argEx) {
                // 統計當前異常發生次數 / 占比
                Tracer.trace(argEx);
                return "非法參數信息";
            } finally {
                if (entry != null) {
                    entry.exit();
                }
            }
    
        }


Sentinel Annotation

源碼:com.alibaba.csp.sentinel.annotation.aspectj.SentinelResourceAspect & com.alibaba.csp.sentinel.annotation.aspectj.AbstractSentinelAspectSupport

  • SentinelResource 使用該注解重構上述方法

        @GetMapping("/test-sentinel-resource")
        @SentinelResource(value = "test-sentinel-api", blockHandler = "blockException", fallback = "fallback")
        public String testSentinelResource(@RequestParam(required = false) String a) {
            // ...被保護的業務邏輯處理
            if (StringUtils.isEmpty(a)) {
                // Sentinel 默認只會統計BlockException & BlockException的子類,如果想統計其他異常信息,添加Tracer
                throw new IllegalArgumentException("A is not empty.");
            }
            return a;
        }
    
        /**
         * testSentinelResource BlockException method
         */
        public String blockException(String a, BlockException e) {
            log.error("限流了,{}", e);
            return "blockHandler 對應《限流規則》";
        }
    
        /**
         * testSentinelResource fallback method
         * {@link SentinelResource} #fallback 在< 1.6的版本中,不能補貨BlockException
         */
        public String fallback(String a) {
            return "fallback 對應《降級規則》";
        }


RestTemplate 整合Sentinel

使用 @SentinelRestTemplate.

resttemplate.sentinel.enabled可以開關是否啟用該注解。(開發階段很有意義。)

源碼:com.springframework.cloud.alibaba.sentinel.custom.SentinelBeanPostProcessor

@Bean
@LoadBalanced
@SentinelRestTemplate
public RestTemplate restTemplate() {
    return new RestTemplate();
}

@Autowired
private RestTemplate restTemplate;
...
Feign整合 Sentinel

配置文件中添加 feign.sentinel.enabled: true來開啟

Sentinel中RestTemplate與Feign分析

  1. 編寫fallback 類,實現feign client

    @Component
    public class UserCenterFeignClientFallback implements IUserCenterFeignClient {
        @Override
        public UserDTO findById(Long userId) {
            UserDTO userDTO = new UserDTO();
            userDTO.setWxNickname("默認用戶");
            return userDTO;
        }
    }
    
    @Slf4j
    @Component
    public class UserCenterFeignClientFallbackFactory implements FallbackFactory<IUserCenterFeignClient> {
    
        @Override
        public IUserCenterFeignClient create(Throwable cause) {
            return new IUserCenterFeignClient() {
                @Override
                public UserDTO findById(Long userId) {
                    log.warn("遠程調用被限流/降級,{}", cause);
                    UserDTO userDTO = new UserDTO();
                    userDTO.setWxNickname("默認用戶");
                    return userDTO;
                }
            };
        }
    }


  2. 應用fallback class

    /**
     * IUserCenterFeignClient for 定義 user-center feign client
     * fallbackFactory 可以拿到異常信息
     * fallback 無法拿到異常信息
     *
     * @author <a href="mailto:magicianisaac@gmail.com">Isaac.Zhang | 若初</a>
     * @since 2019/7/15
     */
    @FeignClient(name = "user-center",
            // fallback = UserCenterFeignClientFallback.class,
            fallbackFactory = UserCenterFeignClientFallbackFactory.class
    )
    public interface IUserCenterFeignClient {
        @GetMapping(path = "/users/{userId}")
        public UserDTO findById(@PathVariable Long userId);
    }


  3. 啟動應用,設置流控規則,結果展示如下

    {
        id: 1,
        ...
        wxNickName: "默認用戶"
    }


感謝各位的閱讀,以上就是“Sentinel中RestTemplate與Feign分析”的內容了,經過本文的學習后,相信大家對Sentinel中RestTemplate與Feign分析這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

闽清县| 姜堰市| 长丰县| 宝应县| 云和县| 深泽县| 宁陕县| 苏州市| 辰溪县| 香河县| 安徽省| 通城县| 丘北县| 盐城市| 七台河市| 阿图什市| 本溪市| 厦门市| 鹰潭市| 德安县| 邻水| 札达县| 新龙县| 云梦县| 资源县| 渑池县| 赤峰市| 城市| 田阳县| 方山县| 惠东县| 平潭县| 大竹县| 佛坪县| 营口市| 临洮县| 根河市| 江陵县| 若尔盖县| 富源县| 瓦房店市|