91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

spring cloud gateway整合sentinel實現網關限流的方法

發布時間:2021-05-27 14:45:11 來源:億速云 閱讀:1003 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關spring cloud gateway整合sentinel實現網關限流的方法的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

說明: sentinel可以作為各微服務的限流,也可以作為gateway網關的限流組件。 spring cloud gateway有限流功能,但此處用sentinel來作為替待。

說明:sentinel流控可以放在gateway網關端,也可以放在各微服務端。

1,以父工程為基礎,創建子工程

2,添加pom依賴

<dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-gateway</artifactId>
    </dependency>
    <dependency>
      <groupId>com.alibaba.cloud</groupId>
      <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
    </dependency>
    <dependency>
      <groupId>com.alibaba.cloud</groupId>
      <artifactId>spring-cloud-alibaba-sentinel-gateway</artifactId>
    </dependency>
    <dependency>
      <groupId>com.alibaba.cloud</groupId>
      <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
    </dependency>

2,添加配置項

server:
 port: 9092
spring:
 cloud:
  nacos:
   discovery:
    register-enabled: false
    server-addr: localhost:8848
    namespace: c22e5019-0bee-43b1-b80b-fc0b9d847501
  sentinel:
   transport:
    dashboard: localhost:8080
    port: 8719
   scg:
    fallback:
     mode: response
     response-status: 455
     response-body: error!
  gateway:
   routes:
    - id: demo_route
     uri: lb://demo
     predicates:
      - Path=/demo/**
    - id: demo2_test
     uri: lb://demo2
     predicates:
      - Path=/user/**
 application:
  name: gateway-sentinel

scg.fallback為sentinel限流后的響應配置

3,啟動類

@SpringBootApplication
@EnableDiscoveryClient
public class GatewaySentinelApplication {
  public static void main(String[] args) {
    
    SpringApplication.run(GatewaySentinelApplication.class, args);
  }
}

4,啟動后,在sentinel控制臺可以看到 gateway-sentinel 應用,可以通過控制臺設置流控規則。

感謝各位的閱讀!關于“spring cloud gateway整合sentinel實現網關限流的方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阳西县| 临猗县| 木兰县| 上思县| 平昌县| 鲁甸县| 思南县| 兴安盟| 汉沽区| 营山县| 宁化县| 中阳县| 宜昌市| 突泉县| 凤翔县| 仙居县| 遵义县| 涞源县| 东阿县| 叶城县| 会昌县| 阳朔县| 华亭县| 三都| 呼和浩特市| 梅河口市| 安义县| 揭阳市| 宣汉县| 十堰市| 兴山县| 新邵县| 东安县| 罗源县| 普兰店市| 安泽县| 科技| 西盟| 宁乡县| 台安县| 泽普县|