Sentinel 热点规则 授权规则

热点规则

热点规则可以根据传递的参数匹配屏蔽

在测试前我们先写一个接口 该接口可以传递两个参数

    @GetMapping("/hot")
    @SentinelResource("hot")
    public String hot(
            @RequestParam(value = "num1",required = false) Integer num1,
            @RequestParam(value = "num2",required = false) Integer num2){
        return num1 + "-" + num2;
    }

注意我们要先访问一次该接口 才能在sentinel那看到
Sentinel 热点规则 授权规则
配置热点规则
Sentinel 热点规则 授权规则
此时如果我们带第一个参数多次访问就会被限制
Sentinel 热点规则 授权规则
如果是第二个参数就不会被限制
Sentinel 热点规则 授权规则

授权规则

上一篇:LeetCode-043-字符串相乘


下一篇:【力扣】7. 整数反转