目錄:Spring Cloud Alibaba 教程
上一篇:8.Spring Cloud Alibaba 熔斷器儀表盤監(jiān)控
下一篇:10.Spring Cloud Alibaba 網關全局過濾
路由網關統(tǒng)一訪問接口
什么是 Spring Cloud Gateway
Spring Cloud Gateway 是 Spring 官方基于 Spring 5.0,Spring Boot 2.0 和 Project Reactor 等技術開發(fā)的網關,Spring Cloud Gateway 旨在為微服務架構提供一種簡單而有效的統(tǒng)一的 API 路由管理方式收毫。Spring Cloud Gateway 作為 Spring Cloud 生態(tài)系中的網關蓬戚,目標是替代 Netflix ZUUL饺著,其不僅提供統(tǒng)一的路由方式,并且基于 Filter 鏈的方式提供了網關基本的功能定踱,例如:安全棍潘,監(jiān)控/埋點,和限流等崖媚。
Spring Cloud Gateway 功能特征
- 基于 Spring Framework 5亦歉,Project Reactor 和 Spring Boot 2.0
- 動態(tài)路由
- Predicates 和 Filters 作用于特定路由
- 集成 Hystrix 斷路器
- 集成 Spring Cloud DiscoveryClient
- 易于編寫的 Predicates 和 Filters
- 限流
- 路徑重寫
Spring Cloud Gateway 工程流程
客戶端向 Spring Cloud Gateway 發(fā)出請求。然后在 Gateway Handler Mapping 中找到與請求相匹配的路由畅哑,將其發(fā)送到 Gateway Web Handler肴楷。Handler 再通過指定的過濾器鏈來將請求發(fā)送到我們實際的服務執(zhí)行業(yè)務邏輯,然后返回荠呐。
過濾器之間用虛線分開是因為過濾器可能會在發(fā)送代理請求之前(pre
)或之后(post
)執(zhí)行業(yè)務邏輯赛蔫。
POM
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.wsl</groupId>
<artifactId>hello-spring-cloud-alibaba-dependencies</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../hello-spring-cloud-alibaba-dependencies/pom.xml</relativePath>
</parent>
<artifactId>hello-spring-cloud-gateway</artifactId>
<packaging>jar</packaging>
<name>hello-spring-cloud-gateway</name>
<dependencies>
<!-- Spring Boot Begin -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- Spring Boot End -->
<!-- Spring Cloud Begin -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
<!-- Spring Cloud End -->
<!-- Commons Begin -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
<!-- Commons Begin -->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<mainClass>com.wsl.hello.gateway.GatewayApplication</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</project>
主要增加了 org.springframework.cloud:spring-cloud-starter-gateway
依賴
Application
package com.wsl.hello.gateway;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.openfeign.EnableFeignClients;
@SpringBootApplication
@EnableDiscoveryClient
@EnableFeignClients
public class GatewayApplication {
public static void main(String[] args) {
SpringApplication.run(GatewayApplication.class, args);
}
}
application.yml
spring:
application:
# 應用名稱
name: spring-gateway
cloud:
# 使用 Naoos 作為服務注冊發(fā)現
nacos:
discovery:
server-addr: 127.0.0.1:8848
# 使用 Sentinel 作為熔斷器
sentinel:
transport:
port: 8721
dashboard: localhost:8080
# 路由網關配置
gateway:
# 設置與服務注冊發(fā)現組件結合,這樣可以采用服務名的路由策略
discovery:
locator:
enabled: true
# 配置路由規(guī)則
routes:
# 采用自定義路由 ID(有固定用法泥张,不同的 id 有不同的功能呵恢,詳見:https://cloud.spring.io/spring-cloud-gateway/2.0.x/single/spring-cloud-gateway.html#gateway-route-filters)
- id: NACOS-CONSUMER
# 采用 LoadBalanceClient 方式請求,以 lb:// 開頭媚创,后面的是注冊在 Nacos 上的服務名
uri: lb://nacos-consumer
# Predicate 翻譯過來是“謂詞”的意思渗钉,必須,主要作用是匹配用戶的請求钞钙,有很多種用法
predicates:
# Method 方法謂詞鳄橘,這里是匹配 GET 和 POST 請求
- Method=GET,POST
- id: NACOS-CONSUMER-FEIGN
uri: lb://nacos-consumer-feign
predicates:
- Method=GET,POST
server:
port: 9000
# 目前無效
feign:
sentinel:
enabled: true
# 目前無效
management:
endpoints:
web:
exposure:
include: "*"
# 配置日志級別,方別調試
logging:
level:
org.springframework.cloud.gateway: debug
注意:請仔細閱讀注釋
測試訪問
依次運行 Nacos 服務:NacosProviderApplication芒炼、NacosConsumerApplication瘫怜、NacosConsumerFeignApplication、GatewayApplication
打開瀏覽器訪問:http://localhost:9000/nacos-consumer/test/app/name
瀏覽器顯示
Hello Nacos Discovery nacos-consumer i am from port 8082
打開瀏覽器訪問:http://localhost:9000/nacos-consumer-feign/test/hi
瀏覽器顯示
Hello Nacos Discovery Hi Feign i am from port 8082
注意:請求方式是 http://路由網關IP:路由網關Port/服務名/
至此說明 Spring Cloud Gateway 的路由功能配置成功
目錄:Spring Cloud Alibaba 教程
上一篇:8.Spring Cloud Alibaba 熔斷器儀表盤監(jiān)控
下一篇:10.Spring Cloud Alibaba 網關全局過濾