【SpringCloud】06-Sentinel-2. Sentinel

  1. 启动Sentinel
java -Dserver.port=8090 -Dcsp.sentinel.dashboard.server=localhost:8090 -Dproject.name=sentinel-dashboard -jar sentinel-dashboard.jar
  1. 依赖
<!--sentinel-->
<dependency>
    <groupId>com.alibaba.cloud</groupId> 
    <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
  1. 配置
spring:
  cloud: 
    sentinel:
      transport:
        dashboard: localhost:8090
      http-method-specify: true # 将请求方式也作为簇点链路

簇点链路: Controller中的Rest接口

上一篇:RISC-V笔记——代码移植指南-4. Arm操作映射


下一篇:Z-BlogPHP显示错误Undefined array key 0 (set_error_handler)的解决办法