您好,登錄后才能下訂單哦!
Spring Cloud Gateway 服務(wù)網(wǎng)關(guān)
API 主流網(wǎng)關(guān)有NGINX、ZUUL、Spring Cloud Gateway、Linkerd等;Spring Cloud Gateway構(gòu)建于 Spring 5+,基于 Spring Boot 2.x 響應(yīng)式的、非阻塞式的 API。同時(shí),它支持 websockets,和 Spring 框架緊密集成,用來(lái)代替服務(wù)網(wǎng)關(guān)Zuul,開(kāi)發(fā)體驗(yàn)相對(duì)來(lái)說(shuō)十分不錯(cuò)。
Spring Cloud Gateway 是 Spring Cloud 微服務(wù)平臺(tái)的一個(gè)子項(xiàng)目,屬于 Spring 開(kāi)源社區(qū),依賴名叫:spring-cloud-starter-gateway。
Zuul 是 Netflix 公司的開(kāi)源項(xiàng)目,Spring Cloud 在 Netflix 項(xiàng)目中也已經(jīng)集成了 Zuul,依賴名叫:spring-cloud-starter-netflix-zuul。
API 網(wǎng)關(guān)
API 網(wǎng)關(guān)出現(xiàn)的原因是微服務(wù)架構(gòu)的出現(xiàn),不同的微服務(wù)一般會(huì)有不同的網(wǎng)絡(luò)地址,而外部客戶端可能需要調(diào)用多個(gè)服務(wù)的接口才能完成一個(gè)業(yè)務(wù)需求,如果讓客戶端直接與各個(gè)微服務(wù)通信,會(huì)有以下的問(wèn)題:
以上這些問(wèn)題可以借助 API 網(wǎng)關(guān)解決。API 網(wǎng)關(guān)是介于客戶端和服務(wù)器端之間的中間層,所有的外部請(qǐng)求都會(huì)先經(jīng)過(guò) API 網(wǎng)關(guān)這一層。也就是說(shuō),API 的實(shí)現(xiàn)方面更多的考慮業(yè)務(wù)邏輯,而安全、性能、監(jiān)控可以交由 API 網(wǎng)關(guān)來(lái)做,這樣既提高業(yè)務(wù)靈活性又不缺安全性。
使用 API 網(wǎng)關(guān)后的優(yōu)點(diǎn)如下:
Spring Cloud Gateway的特征
快速上手
Spring Cloud Gateway 示例源碼
Spring Cloud Gateway 網(wǎng)關(guān)路由有兩種配置方式:
在配置文件 yml 中配置
通過(guò)@Bean自定義 RouteLocator,在啟動(dòng)主類 Application 中配置
這兩種方式是等價(jià)的,建議使用 yml 方式進(jìn)配置。
1.pom.xml Maven依賴
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.7.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Greenwich.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!--Spring Cloud Gateway 是使用 netty+webflux 實(shí)現(xiàn)因此不需要再引入 web 模塊--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-gateway</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build>
2.application.yml配置
server: port: 8080 spring: cloud: gateway: routes: - id: easy_route # 我們自定義的路由 ID,保持唯一 uri: https://github.com # 目標(biāo)服務(wù)地址 predicates: # 路由條件,Predicate 接受一個(gè)輸入?yún)?shù),返回一個(gè)布爾值結(jié)果。該接口包含多種默認(rèn)方法來(lái)將 - Path=/smltq/spring-boot-demo
上面這段配置的意思是,配置了一個(gè) id 為 easy_route 的路由規(guī)則,當(dāng)訪問(wèn)地址 http://localhost:8080/smltq/spring-boot-demo時(shí)會(huì)自動(dòng)轉(zhuǎn)發(fā)到地址:https://github.com/smltq/spring-boot-demo 。
3.配置完成啟動(dòng)項(xiàng)目
在瀏覽器訪問(wèn)進(jìn)行測(cè)試,當(dāng)我們?cè)L問(wèn) http://localhost:8080/smltq/spring-boot-demo 時(shí)會(huì)展示如下頁(yè)面:
資料
Spring Cloud Gateway 示例源碼
更多路由分發(fā)功能參考官網(wǎng)
Spring Boot、Spring Cloud示例學(xué)習(xí)
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。