微服务整合Sentinel
关于Sentinel的功能用处这里不做过多赘述
1、引入sentinel依赖
需要监控哪个微服务,就在哪个微服务中引入以下以依赖
<!--sentinel-->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
2、配置sentinel控制台
spring:
cloud:
sentinel:
transport:
dashboard: localhost:端口号 #这里指的是启动sentinel管理界面时指定的端口
3、访问该服务的任意端点
也就是controller里的方法