springcloud流量卫士sentinel 入门
程序员文章站
2022-06-13 15:38:59
...
第一步现在sentinel相关可视化操作jar
sentinel-dashboard-1.7.1.jar
在cmd黑窗口使用
//启动jar包
java -jar sentinel-dashboard-1.7.1.jar
启动后默认端口号是8080
默认用户名密码皆为:sentinel
创建项目在pom文件加入
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
<version>2.1.0.RELEASE</version>
</dependency>
在配置文件中添加
spring:
cloud: # 配置sentinel客户端,注册进控制台里
sentinel:
transport:
dashboard: localhost:8080
application:
name: sentinel-core-example #指定spring boot名字
在controller层中编写以下代码
@RestController
public class DemoController {
@GetMapping("/test")
public String test(){
return "test sentinel";
}
}
访问test方法
在sentinel控制台“簇点链路”看到一下画面说明成功了