Java教程

Sentinel 之 整合Gateway

本文主要是介绍Sentinel 之 整合Gateway,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Sentinel 从 1.6.0 版本开始,提供了 Spring Cloud Gateway 的适配模块,可提供两种资源维度的限流:

1、route  维度:在 Spring 配置 路由条目时,资源名为 routeId

2、自定义 API 维度,用户可以用 Sentinel 提供的 API 来定义一些 API 分组

Gageway 模块加入 Sentinel 整合依赖:

<!--sentinel 依赖-->
<dependency>
   <groupId>com.alibaba.cloud</groupId>
   <artifactId>spring-cloud-alibaba-sentinel-gateway</artifactId>
</dependency>

自定义编写一个配置类

@Component
public class GatewayConfiguration {
   @PostConstruct
   public void doInit() {
      //设置限流或降级的回调函数 new BlockRequestHandler() 匿名内部类
      GatewayCallbackManager.setBlockHandler((ServerWebExchange serverWebExchange, Throwable throwable) ->
            ServerResponse.status(200).bodyValue("系统繁忙请稍后"));
   }
}

在application.yaml中配置sentinel控制台访问地址

spring:
  cloud:
    sentinel:
      transport:
        port: 9000
        dashboard: 127.0.0.1:8080

启动项目,在Sentinel控制台中添加关于资源的控制规则,sentinel在适配spring cloud gateway时提供了两种配置规则

 

route维度:即在spring配置文件配置的路由条数,资源名为对应的routeId

自定义API维度:用户可以利用Sentinel提供的API来自定义一些自定义分组

 

>>>>>>>>  接下一篇学习:https://www.cnblogs.com/Alay/p/15488126.html  <<<<<<<<<<<

这篇关于Sentinel 之 整合Gateway的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!