引入依赖

:::tips 在每个微服务工程中引入Sentinel的依赖 :::

  1. <!--Sentinel依赖-->
  2. <dependency>
  3. <groupId>com.alibaba.cloud</groupId>
  4. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  5. </dependency>

添加配置

:::tips 在每个微服务工程的配置文件中添加Sentinel的连接信息 :::

  1. spring:
  2. cloud:
  3. sentinel:
  4. transport:
  5. #配置Sentinel服务的地址
  6. dashboard: localhost:8090

访问API

:::tips 进入浏览器,访问这个微服务的任意API,进入Sentinel中(http://localhost:8090)就可以看到访问的API :::