SpringBoot集成Sentinel实现接口流量控制

2025-05-27 0 98

SpringBoot集成Sentinel实现接口流量控制

Hello,大家好,我是麦洛,今天带大家来了解一下SpringBoot如何继承Sentinel来实现接口流量控制

Sentinel控制台搭建

在我的上一篇文章阿里出品的Sentinel到底是个什么玩意?中,已经介绍过如何准备Sentinel控制台,大家可以直接参考;

Sentinel 客户端

项目搭建

首先我们来创建一个测试项目,这里初始化项目的url建议大家填写阿里云的地址,会有惊喜

  1. http://start.aliyun.com

SpringBoot集成Sentinel实现接口流量控制

接下来就是常规操作,一路next,在下图的位置稍微注意一下

SpringBoot集成Sentinel实现接口流量控制

说明:

同大家以前创建项目一样,只需要在这里勾选Sentinel就可以啦

项目创建好以后,我们发现pom文件中引入了下面的依赖

SpringBoot集成Sentinel实现接口流量控制

有的小伙伴看网上博客,也会有下面的方式,指定版本号

  1. <!–sentinel–>
  2. <dependency>
  3. <groupId>com.alibaba.cloud</groupId>
  4. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  5. <version>2.1.0.RELEASE</version>
  6. </dependency>

如果你使用我推荐的阿里云的Url,会发现Sentinel的版本号都定义父工程,Cloud的各个组件的兼容性就不要大家操心了

  1. <dependencyManagement>
  2. <dependencies>
  3. <dependency>
  4. <groupId>org.springframework.boot</groupId>
  5. <artifactId>spring-boot-dependencies</artifactId>
  6. <version>${spring-boot.version}</version>
  7. <type>pom</type>
  8. <scope>import</scope>
  9. </dependency>
  10. <dependency>
  11. <groupId>com.alibaba.cloud</groupId>
  12. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  13. <version>${spring-cloud-alibaba.version}</version>
  14. <type>pom</type>
  15. <scope>import</scope>
  16. </dependency>
  17. </dependencies>
  18. </dependencyManagement>

打开项目配置文件,会发现它已经为我们自动加好了配置,真的超级方便

  1. server.port=8083
  2. #应用名称
  3. spring.application.name=springcloud-sentinel
  4. #Sentinel控制台地址
  5. spring.cloud.sentinel.transport.dashboard=localhost:8080
  6. #取消Sentinel控制台懒加载
  7. #默认情况下Sentinel会在客户端首次调用的时候进行初始化,开始向控制台发送心跳包
  8. #配置sentinel.eager=true时,取消Sentinel控制台懒加载功能
  9. spring.cloud.sentinel.eager=true
  10. #如果有多套网络,又无法正确获取本机IP,则需要使用下面的参数设置当前机器可被外部访问的IP地址,供admin控制台使用
  11. #spring.cloud.sentinel.transport.client-ip=#sentinel配置
  12. spring.application.name=frms
  13. spring.cloud.sentinel.transport.dashboard=localhost:8080
  14. spring.cloud.sentinel.transport.heartbeat-interval-ms=500

如何定义资源

编程式定义

官网提供的demo

  1. packagecom.milo.sentinel;
  2. importcom.alibaba.csp.sentinel.Entry;
  3. importcom.alibaba.csp.sentinel.SphU;
  4. importcom.alibaba.csp.sentinel.slots.block.BlockException;
  5. importcom.alibaba.csp.sentinel.slots.block.RuleConstant;
  6. importcom.alibaba.csp.sentinel.slots.block.flow.FlowRule;
  7. importcom.alibaba.csp.sentinel.slots.block.flow.FlowRuleManager;
  8. importorg.springframework.boot.SpringApplication;
  9. importorg.springframework.boot.autoconfigure.SpringBootApplication;
  10. importjava.util.ArrayList;
  11. importjava.util.List;
  12. /**
  13. *项目入口
  14. *@authorMiloLee
  15. *@date2021-3-2019:07
  16. *
  17. */
  18. @SpringBootApplication
  19. publicclassSentinelApplication{
  20. publicstaticvoidmain(String[]args){
  21. SpringApplication.run(SentinelApplication.class,args);
  22. //配置规则.
  23. initFlowRules();
  24. while(true){
  25. //1.5.0版本开始可以直接利用try-with-resources特性
  26. try(Entryentry=SphU.entry("HelloWorld")){
  27. //被保护的逻辑
  28. Thread.sleep(300);
  29. System.out.println("helloworld");
  30. }catch(BlockException|InterruptedExceptionex){
  31. //处理被流控的逻辑
  32. System.out.println("blocked!");
  33. }
  34. }
  35. }
  36. privatestaticvoidinitFlowRules(){
  37. List<FlowRule>rules=newArrayList<>();
  38. FlowRulerule=newFlowRule();
  39. rule.setResource("HelloWorld");
  40. rule.setGrade(RuleConstant.FLOW_GRADE_QPS);
  41. //SetlimitQPSto20.
  42. rule.setCount(20);
  43. rules.add(rule);
  44. FlowRuleManager.loadRules(rules);
  45. }
  46. }

注解式定义

  1. @SpringBootApplication
  2. publicclassApplication{
  3. publicstaticvoidmain(String[]args){
  4. SpringApplication.run(ServiceApplication.class,args);
  5. }
  6. }
  7. @Service
  8. publicclassTestService{
  9. @SentinelResource(value="sayHello")
  10. publicStringsayHello(Stringname){
  11. return"Hello,"+name;
  12. }
  13. }
  14. @RestController
  15. publicclassTestController{
  16. @Autowired
  17. privateTestServiceservice;
  18. @GetMapping(value="/hello/{name}")
  19. publicStringapiHello(@PathVariableStringname){
  20. returnservice.sayHello(name);
  21. }
  22. }

@SentinelResource 注解用来标识资源是否被限流、降级。上述例子上该注解的属性 sayHello 表示资源名。

启动控制台

  1. java-Dserver.port=8080-Dcsp.sentinel.dashboard.server=localhost:8080-Dproject.name=sentinel-dashboard-jarsentinel-dashboard-1.8.1.jar

SpringBoot集成Sentinel实现接口流量控制

控制台配置规则

控制台的操作我们用编程式定义的例子来演示,大家启动我们的服务

SpringBoot集成Sentinel实现接口流量控制

我们会发现除了sentinel-dashboard之外,多了一个milolee-sentinel,这个就是我们的服务,它的名称其实对应我们配置文件定义的应用名称:

  1. #应用名称
  2. spring.application.name=milolee-sentinel

点击机器列表,这这里如果能发现你的机器,那就是成功上线了

SpringBoot集成Sentinel实现接口流量控制

实时监控

SpringBoot集成Sentinel实现接口流量控制

簇点链路

SpringBoot集成Sentinel实现接口流量控制

流控规则配置

给我们的资源HelloWorld配置流控规则,它的QPS(每秒请求数)为1,如图:

SpringBoot集成Sentinel实现接口流量控制

通过查看实时监控,我们发现已经生效

SpringBoot集成Sentinel实现接口流量控制

降级规则配置

给我们的资源HelloWorld添加一个降级规则配置,如果QPS大于1,且平均响应时间大于20ms,则接口下来接口在2秒钟无法访问,之后自动恢复。

SpringBoot集成Sentinel实现接口流量控制

目前这些规则仅在内存态生效,应用重启之后,该规则会丢失。后续文章我们会继续学习动态规则

SpringBoot集成Sentinel实现接口流量控制

关于控制台的使用,大家可以参考官方文档,比较详细https://sentinelguard.io/zh-cn/docs/dashboard.html

原文地址:https://mp.weixin.qq.com/s/Zl5csnQfhg8FrNm9hLZyaA

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 SpringBoot集成Sentinel实现接口流量控制 https://www.kuaiidc.com/76383.html

相关文章

发表评论
暂无评论