随着微服务的流行,服务和服务之间的稳定性变得越来越重要。 Sentinel 以流量为切入点,从流量控制、熔断降级、系统负载保护等多个维度保护服务的稳定性。
Sentinel 具有以下特征:
第一步:引入pom
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-alibaba-dependencies</artifactId> <version>0.2.1.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
第二步:新建一个启动类和controller
@SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } } @RestController public class TestController { @GetMapping(value = "/hello") @SentinelResource("hello") public String hello() { return "Hello Sentinel"; } }
第三步:引入dashboard
可以直接下载sentinel-dashboard的jar包,也可以自己编译,我这边这里clone了代码自己编译,代码地址: https://github.com/alibaba/Se... ,执行命令
mvn clean package
会得到:sentinel-dashboard.jar,执行命令启动dashboard:
java -jar sentinel-dashboard.jar
这样默认是8080端口,在浏览器输入: http://localhost :8080,默认账号密码:sentinel:sentinel,看到控制台界面为部署成功:
第四步:引入配置:
server.port=8088 spring.application.name=spring-cloud-alibaba-sentinel-demo # sentinel dashboard spring.cloud.sentinel.transport.dashboard=localhost:8080
第五步:启动spring boot 项目,继续访问localhost:8080,会看到如下界面
第六步:使用Sentinel实现接口限流(在控制台)
第七步:测试
通过上面的配置,实现的是/hello接口qps最大是2,如果qps大于2,则快速失败,配置完成,点击保存,我们快速刷新浏览器,会发现快速失败
这篇文章只是springcloud和sentinel的入门,复杂的一些代码配置和文件配置后期介绍
更多文章欢迎关注个人博客: https://www.zplxjj.com 和公众号