Sentinel如何使用
作者:互联网
方式四:注解方式定义资源
Sentinel 支持通过 @SentinelResource 注解定义资源并配置 blockHandler 和 fallback 函数来进行限流之后的处理。示例:
// 原本的业务方法.
@SentinelResource(blockHandler = "blockHandlerForGetUser")
public User getUserById(String id) {
throw new RuntimeException(
标签:blockHandler,定义,SentinelResource,如何,限流,使用,Sentinel,注解 来源: https://blog.csdn.net/weixin_43496746/article/details/120249976