Java @SentinelResource全面介紹
按資源名稱限流加後續處理
Module:cloudalibaba-sentinel-service8401
pom新增依賴
<dependency><!-- 引入自己定義的api通用包,可以使用Payment支付Entity --> <groupId>com.atguigu.springcloud</groupId> <artifactId>cloud-api-common</artifactId> <version>${project.version}</version> </dependency>
這個依賴來自自己的模板,這裡的這個依賴就是去數據庫查詢的一部分業務處理
新增Controller
@RestController public class RateLimitController { @GetMapping("/byResource") @SentinelResource(value = "byResource",blockHandler = "handleException") public CommonResult byResource() { return new CommonResult(200,"按資源名稱限流測試OK",new Payment(2020L,"serial001")); } public CommonResult handleException(BlockException exception) { return new CommonResult(444,exception.getClass().getCanonicalName()+"\t 服務不可用"); } }
圖形配置和代碼關系
表示1秒鐘內查詢次數大於1,就跑到我們自定義的處流,限流
測試1
1秒鐘點擊1下,OK
超過上述,瘋狂點擊,返回瞭自己定義的限流處理信息,限流發生
額外問題
此時關閉問服務8401看看
Sentinel控制臺,流控規則消失瞭?????
臨時/持久?
按照Url地址限流加後續處理
通過訪問的URL來限流,會返回Sentinel自帶默認的限流處理信息
Controller修改為:
@RestController public class RateLimitController { @GetMapping("/byResource") @SentinelResource(value = "byResource",blockHandler = "handleException") public CommonResult byResource() { return new CommonResult(200,"按資源名稱限流測試OK",new Payment(2020L,"serial001")); } public CommonResult handleException(BlockException exception) { return new CommonResult(444,exception.getClass().getCanonicalName()+"\t 服務不可用"); } @GetMapping("/rateLimit/byUrl") @SentinelResource(value = "byUrl") public CommonResult byUrl() { return new CommonResult(200,"按url限流測試OK",new Payment(2020L,"serial002")); } }
測試2
訪問一次
http://localhost:8401/rateLimit/byUrl
正常
瘋狂點擊http://localhost:8401/rateLimit/byUrl
會返回Sentinel自帶的限流處理結果
上面兜底方案面臨的問題
1 系統默認的,沒有體現我們自己的業務要求。
2 依照現有條件,我們自定義的處理方法又和業務代碼耦合在一塊,不直觀。
3 每個業務方法都添加一個兜底的,那代碼膨脹加劇。
4 全局統一的處理方法沒有體現。
客戶自定義限流處理邏輯
創建CustomerBlockHandler類用於自定義限流處理邏輯
測試後我們自定義的出來瞭
控制類增加新的業務
@GetMapping("/rateLimit/customerBlockHandler") @SentinelResource(value = "customerBlockHandler", blockHandlerClass = CustomerBlockHandler.class, blockHandler = "handleException2") public CommonResult customerBlockHandler() { return new CommonResult(200,"按客戶自定義限流處理邏輯"); }
自定義通用的限流處理邏輯
blockHandlerClass = CustomerBlockHandler.class
blockHandler = handleException2
上述配置:找CustomerBlockHandler類裡的handleException2方法進行兜底處理 定義通用的限流處理邏輯
測試3
測試後我們自定義的出來瞭
到此這篇關於Java @SentinelResource全面介紹的文章就介紹到這瞭,更多相關Java @SentinelResource內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Java之SpringCloudAlibaba Sentinel組件案例講解
- 淺談如何在項目中使用Spring Cloud Alibaba Sentinel組件
- Sentinel熱點key限流的實現詳解
- Sentinel 整合SpringCloud的詳細教程
- Spring cloud 限流的多種方式