开发者社区 > 云原生 > 正文

SentinelResource注解的value为什么带有/的时候回产生这种情况?

框架是spring-boot2.2.2,我使用SentinelResource的注解然后添加流控规则资源名为hello的时候,程序能正常进入helloHandler,代码如下

@RequestMapping("/hello")
@SentinelResource(value= "hello", blockHandler = "helloHandler", fallback = "helloFallback")
public String hello() {
    return "abc";
}

public String helloHandler(BlockException ex) {
    System.out.println("hello block");
    return "block";
}

public String helloFallback() {
    System.out.println("hello fallback");
    return "fallback";
}

可是当我修改SentinelResource的value为/hello的时候,意图是想要保持SentinelResource的名字跟RequestMapping的名字一致,流控规则资源名为/hello,发现流控有时候进入helloHandler,有时候提示Blocked by Sentinel (flow limiting),这个SentinelResource注解的value为什么带有/的时候回产生这种情况?

@RequestMapping("/hello") @SentinelResource(value= "/hello", blockHandler = "helloHandler", fallback = "helloFallback") public String hello() { return "abc"; }

public String helloHandler(BlockException ex) {
    System.out.println("hello block");
    return "block";
}

public String helloFallback() {
    System.out.println("hello fallback");
    return "fallback";
}

提问176.png

有时候正常进入handler

提问177.png

有时候返回默认流控提示页

提问178.png

4.0.0 org.springframework.boot spring-boot-starter-parent 2.2.2.RELEASE com.xsjweb sentinel-spring-boot-app 0.0.1-SNAPSHOT sentinel-spring-boot-app Demo project for Spring Boot 1.8 org.springframework.boot spring-boot-starter org.springframework.boot spring-boot-starter-test test org.junit.vintage junit-vintage-engine org.springframework.boot spring-boot-starter-web RELEASE compile com.alibaba fastjson 1.2.62 org.springframework.cloud spring-cloud-starter-alibaba-sentinel 0.9.0.RELEASE org.springframework.boot spring-boot-maven-plugin

我想知道是不是SentinelResource注解value不支持/xxx的形式,因为如果配置非/xxx的格式的话,面板实时监控有2个,分别为/hello,hello,感觉有点冗余

提问179.png

原提问者GitHub用户tanjiancheng

展开
收起
云上静思 2023-05-19 16:45:03 193 0
1 条回答
写回答
取消 提交回答
  • pom里依赖了spring-cloud-starter-alibaba-sentinel, spring-cloud-starter-alibaba-sentinel为了方便地使用,引入了sentinel-annotation-aspectj和sentinel-web-servlet。

    @RequestMapping("/hello") @SentinelResource(value= "/hello", blockHandler = "helloHandler", fallback = "helloFallback") public String hello() { return "abc"; }

    两个/hello,这样sentinel-web-servlet适配和@SentinelResource就是相同的资源名,相当于经过了Sentinel处理了2次,所以有时被@SentinelResource拦截到进blockHandler,有时被sentinel-web-servlet适配拦截到提示Blocked by Sentinel (flow limiting)。

    Blocked by Sentinel (flow limiting)是sentinel-web-servlet适配默认的限流提示信息,参考上面@szyh30发的wiki文档。

    可以考虑设置spring.cloud.sentinel.filter.enabled=false或者去掉@SentinelResource。

    原回答者GitHub用户cdfive

    2023-05-19 22:43:26
    赞同 展开评论 打赏
问答分类:
问答地址:

阿里云拥有国内全面的云原生产品技术以及大规模的云原生应用实践,通过全面容器化、核心技术互联网化、应用 Serverless 化三大范式,助力制造业企业高效上云,实现系统稳定、应用敏捷智能。拥抱云原生,让创新无处不在。

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载