发布时间:2023-04-18 09:00
就是在整个应用上定义一个大的规则
定义:使用了@SentinelResource注解的blockHandler属性,定义出现限流效果的属性
package com.gek.cloudalibabasentinelservice8401.controller;
import com.alibaba.csp.sentinel.annotation.SentinelResource;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@Slf4j
public class SentinelResourceTestController {
@GetMapping("/byResource")
@SentinelResource(value = "byResource",blockHandler = "handler_resource")
public String byResource(){
return "------byResource";
}
public String handler_resource(){
return "系统繁忙";
}
}
定义:使用@SentinelResource 注解,但是不使用blockHandler属性,系统默认会处理限流异常的方法
@GetMapping("/byTest")
@SentinelResource(value = "/byTest")
public String byTest(){
return "------byTest";
}
@SentinelResource除了blockHandler可以设置自定义限流处理逻辑方法以外,还提供另外一个属性来设置限流处理逻辑类型blockHandlerClass属性,此属性中设置的方法必需为 static 函数,否则无法解析。
package com.gek.cloudalibabasentinelservice8401.handler;
import com.alibaba.csp.sentinel.slots.block.BlockException;
/**
* 此类用来处理自定义逻辑处理
*/
public class CustomerBlockHandler {
public static String handlerException1(BlockException blockException){
return "handlerException1:系统异常,请稍后重试!";
}
public static String handlerException2(BlockException blockException){
return "handlerException2:网络崩溃了,请稍后重试!";
}
}
/**
*blockHandlerClass表示自定义的限流异常类
* blockHandler表示调用的哪个方法
* @return
*/
@GetMapping("/byCustomer")
@SentinelResource(value = "byCustomer",blockHandlerClass = CustomerBlockHandler.class,blockHandler = "handlerException1")
public String bycustomer(){
return "-------bycustomer";
}
fallback处理的是java异常
blockHandler用来处理sentinel限流异常
exceptionsToIgnore
(since 1.6.0):用于指定哪些异常被排除掉,不会计入异常统计中,也不会进入 fallback 逻辑中,而是会原样抛出。毕业设计之 --- 基于长短期记忆网络LSTM的股票预测系统
YOLO系列模型,yolov3-yolov7全方位对比实验参照,包括参数量Params,计算量GFLOPs,复杂度,mAP以及FPS等参照
Ultra Fast Structure-aware Deep Lane Detection论文解读
10行代码实现微信小程序支付功能,使用小程序云开发实现小程序支付功能(含源码
意犹未尽的第2篇再次推出,继续讲解oracledb_exporter监控Oracle,一个入侵性极低的监控方案。
微信小商店连接小鹅通:快速解决课程订单信息无法自动同步的问题
DL with python(22)——tensorflow实现GRU股票预测
软件测试工程师涨薪攻略,1年多经验的测试从月薪8k-17k的转变
mysql伪列的使用,mysql伪列的妙用,mysql获取近几天的日期用来连表查询
关于 SAPGUI 事物码在 Fiori Launchpad 中嵌入运行的技术细节
各种编程语言铺天盖地,有函数式语言、面向对象的语言、动态语言、编译语言