Sentinel简单入门

个人博客纯净版

Sentinel简单入门 | 代码搬运工

1、下载使用

下载sentinel地址:https://github.com/alibaba/Sentinel/releases

下载 sentinel-dashboard-x.x.x.jar

下载到本地以后,通过一下命令java -jar sentinel-dashboard-x.x.x.jar 进行启动

启动完成以后在浏览器访问localhost:8080进入登录页,默认用户名和密码都为sentinel

2、客户端集成Sentinel

在pom.xml中添加如下依赖

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.1.13.RELEASE</version>
</parent>

<dependencies>
    <dependency>
        <groupId>com.alibaba.cloud</groupId>
        <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
</dependencies>

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>com.alibaba.cloud</groupId>
            <artifactId>spring-cloud-alibaba-dependencies</artifactId>
            <version>2.2.1.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

在yml配置文件中添加如下配置

server:
  port: 8081

spring:
  application:
    name: sentinel-demo
  cloud:
    sentinel:
      transport:
        dashboard: 127.0.0.1:8080
        port: 8719

新增一个测试接口,如下:

@RestController
@RequestMapping("/sentinel")
public class IndexController {

    @GetMapping("/testA")
    public String testA(){
        return "testA";
    }
}

启动客户端,在浏览器中访问接口/sentinel/testA, 此处要先访问资源,否在在Sentinel面板中无法看到对应的客户端

接下在我们登陆Sentinel客户端,会在Sentinel面板看到sentinel-demo服务,此时我们可以针对上面的接口配置限流信息和降级信息了,如下:

我们配置一个限流规则如下:

我们在浏览器快速访问http://localhost:8081/sentinel/testA, 会看到返回Blocked by Sentinel (flow limiting)信息,说明我们配置的限流规则生效了

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值