您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關springcloudgateway中怎么利用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: 9092spring: 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@EnableDiscoveryClientpublic class GatewaySentinelApplication { public static void main(String[] args) { SpringApplication.run(GatewaySentinelApplication.class, args); }}
4,啟動后,在sentinel控制臺可以看到 gateway-sentinel 應用,可以通過控制臺設置流控規則。
看完上述內容,你們對springcloudgateway中怎么利用sentinel實現網關限流有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。