框架是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";
}
有时候正常进入handler
有时候返回默认流控提示页
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,感觉有点冗余
原提问者GitHub用户tanjiancheng
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
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。
阿里云拥有国内全面的云原生产品技术以及大规模的云原生应用实践,通过全面容器化、核心技术互联网化、应用 Serverless 化三大范式,助力制造业企业高效上云,实现系统稳定、应用敏捷智能。拥抱云原生,让创新无处不在。