sentinel部署和使用:
sentinel官网地址:https://sentinelguard.io/zh-cn/docs/dashboard.html
windows部署:
sentinel:下载地址:https://github.com/alibaba/Sentinel/releases
点开图片中官网下面这个地址进行下载:
下载时需要注意:要和自己项目中引入的Sentinel依赖的版本一致。
下载以后解压启动:
启动命令:java -jar sentinel-dashboard-1.8.2.jar --server.port=8033 (使用cmd,指定了端口魏8033,默认端口号是8080)
Docker部署:
<!--自定义模板命令-->
docker run --name 自定义容器的名称 -d --restart=always -p 自定义容器的映射访问端口:8858 -d bladex/sentinel-dashboard:版本号
<!--命令-->
docker run --name sentinel -d --restart=always -p 8080:8858 -d bladex/sentinel-dashboard:1.8.0
Sentinel如何使用:
第一步:在application.yml配置文件中添加配置:
1、配置整合sentinel:
spring:
application:
name: kpi-cloud-bonus
cloud:
sentinel:
transport:
# 设置sentinel控制台的地址
dashboard: 127.0.0.1:8033 #sentinel的访问地址和端口
port: 8719 #客户端与服务端的数据传输接口
2、配置feign整合sentinel:
调用方进行配置:
feign:
client:
config:
default:
connectTimeout: 600000
readTimeout: 600000
sentinel:
enabled: true #开启feign整合sentinel
第二步:代码中使用sentinel:
在官网中可以看到文档,其实已经写的非常清楚了,需要如何使用:
具体的demo:
1、blockHandler的使用:
注意:blockHandler:后面的名称一定要和CustomerBlockHandler类中写的方法名称一致,且两个方法参数和返回类型要一致。
value: 后面的名字,一定要和sentinel页面上配置的限流,资源名要一致,才能进行使用。以下图片中展示:
官网中注解支持已经写的很清楚了:
@Override
@SentinelResource(value = "sentinelblockHandlerTest",blockHandlerClass = CustomerBlockHandler.class,blockHandler = "handlerException1")
public String sentinelblockHandlerTest() {
return "sentinelblockHandlerTest";
}
2、fallback的使用:
@Override
@SentinelResource(value = "sentinelFallbackTest",fallbackClass = CustomerBlockHandler.class,fallback = "handlerException2")
public String sentinelFallbackTest(int number) {
if (number == 1){
int i = 10/0;
}
return "sentinelFallbackTest";
}
3、blockHandlerClass和fallbackClass 的使用:
/**
* @author luoyan
* @date 2022年08月18日 11:39
* @Version: V1.0
*/
@Component
public class CustomerBlockHandler {
public static String handlerException1(BlockException exception){
return "handlerException2:网络崩溃了,请稍后重试!";
}
public static String handlerException2(int number,Throwable exception){
return "handlerException1:系统异常,请稍后重试!";
}
public static Result<?> queryAssessJobsHandlerException(Throwable exception){
return Result.error("handlerException1:系统异常,请稍后重试!");
}
}
结合feign使用:
实现feign接口,写feign接口的方法,自定义返回内容。
@Component
@Slf4j
public class MaterialsClientFallBack implements MaterialsClient {
@Override
public Result<?> sentinelTestInspection() {
log.error("出现异常了,熔断");
return Result.error("出现异常,熔断");
}
}
fallbackFactory:后面写定义好的执行类:
@Component
@FeignClient(value = "jeecg-system",fallbackFactory = MaterialsClientFallBack.class)
public interface MaterialsClient {
@AutoLog(value = "新增材料")
@ApiOperation(value="新增材料", notes="新增材料")
@RequestMapping(value = "/materials/add")
Result<?> add(@RequestBody Materials materials);
}