熔断资源官网地址: https://github.com/alibaba/Sentinel/wiki/%E7%86%94%E6%96%AD%E9%99%8D%E7%BA%A7
资源(是自己写的处理器方法,要对自己写的方法进行限流)是自定义的一个名称,这个名称会在Sentinel中显示,就可以对其进行熔断、降级等管理。
实现对资源管理的常用方式有两种,分别是try和注解。
1、try方式
在user工程的UserController里,添加如下方法:
@GetMapping("/try")
public Result trySources(){
String sourcesName = "testTry";
try(Entry entry = SphU.entry(sourcesName)) { //SphU.entry方法通过传入资源名称和其他参数来获取访问令牌。如果获取到令牌,则可以访问目标资源;如果没有获取到令牌,则无法访问对应资源。
return Result.ok();
} catch (BlockException e) {
return Result.error().setMessage("被限流了!");
}
}
注意Entry引包
import com.alibaba.csp.sentinel.Entry;
重启两个项目,运行一下看效果,就是自己写的方法,也被限流了。
2、注解方式
在user工程的UserController里,添加如下方法:
@GetMapping("/annotation")
@SentinelResource(value = "testAnnotation", blockHandler = "annotationSourcesError")
public Result annotationSources() {
return Result.ok();
}
public Result annotationSourcesError(BlockException e) {
return Result.error().setMessage("被限流了!");
}
重启两个项目,运行一下看效果,就是自己写的方法,也别限流了。