在微服務架構中 API網關 很是重要,網關做爲全局流量入口並不僅僅是一個反向路由,更多的是把各個邊緣服務(Web層)的各類共性需求抽取出來放在一個公共的「服務」(網關)中實現,例如安全認證、權限控制、限流熔斷、監控、跨域處理、聚合API文檔等公共功能。前端
在以 Dubbo 框架體系來構建的微服務架構下想要增長API網關,若是不想自研開發的狀況下在目前的開源社區中幾乎沒有找到支持dubbo協議的主流網關,可是 Spring Cloud 體系下卻有兩個很是熱門的開源API網關能夠選擇;本文主要介紹如何經過 Nacos
整合 Spring Cloud Gateway
與 Dubbo 服務
。java
dubbo屬於rpc調用,因此必須提供一個web層的服務做爲http入口給客戶端調用,並在上面提供安全認證等基礎功能,而web層前面對接Nginx等反向代理用於統一入口和負載均衡。git
web層通常是根據業務模塊來切分的,用於聚合某個業務模塊所依賴的各個service服務github
PS:咱們可否把上圖中的web層所有整合在一塊兒成爲一個API網關呢?(不建議這樣作)web
由於這樣的web層並無實現 泛化調用 必須引入全部dubbo服務的api依賴,會使得網關變得很是不穩定,任何服務的接口變動都須要修改網關中的api依賴!redis
下面就開始聊聊直接拿熱門的 Spring Cloud Gateway
來做爲dubbo架構體系的網關是否可行,首先該API網關是屬於 Spring Cloud 體系下的組件之一,要整合dubbo的話須要解決如下問題:spring
上面提到的第一個問題「打通註冊中心」其實已經不是問題了,目前dubbo支持
Zookeeper
與Nacos
兩個註冊中心,而 Spring Cloud 自從把@EnableEurekaClient
改成@EnableDiscoveryClient
以後已經基本上支持全部主流的註冊中心了,本文將使用Nacos
做爲註冊中心打通二者api
把傳統dubbo架構中的 Nginx
替換爲 Spring Cloud Gateway
,並把 安全認證
等共性功能前移至網關處實現
跨域
因爲web層服務自己提供的就是http接口,因此網關層無需做協議轉換,可是因爲
安全認證
前移至網關了須要經過網絡隔離的手段防止被繞過網關直接請求後面的web層安全
dubbo服務自己修改或添加 rest
傳輸協議的支持,這樣網關就能夠經過http傳輸協議與dubbo服務通訊了
rest傳輸協議:基於標準的Java REST API——JAX-RS 2.0(Java API for RESTful Web Services的簡寫)實現的REST調用支持
目前版本的dubbo已經支持dubbo、rest、rmi、hessian、http、webservice、thrift、redis等10種傳輸協議了,而且還支持同一個服務同時定義多種協議,例如配置 protocol = { "dubbo", "rest" } 則該服務同時支持
dubbo
與rest
兩種傳輸協議
方式一 對比 方式二 多了一層web服務因此多了一次網絡調用開銷,可是優勢是各自的職責明確單一,web層能夠做爲聚合層用於聚合多個service服務的結果通過融合加工一併返回給前端,因此這種架構下能大大減小服務的 循環依賴
在根目錄的 pom.xml
中定義全局的依賴版本
<properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>8</java.version> <spring-boot-dependencies.version>2.2.8.RELEASE</spring-boot-dependencies.version> <spring-cloud-dependencies.version>Hoxton.SR5</spring-cloud-dependencies.version> <spring-cloud-alibaba-dependencies.version>2.2.1.RELEASE</spring-cloud-alibaba-dependencies.version> <jaxrs.version>3.12.1.Final</jaxrs.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring-boot-dependencies.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring-cloud-dependencies.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-alibaba-dependencies</artifactId> <version>${spring-cloud-alibaba-dependencies.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement>
分別定義兩個api接口
DubboService 使用dubbo協議的服務
public interface DubboService { String test(String param); }
RestService 使用rest協議的服務
public interface RestService { String test(String param); }
使用 方式一 整合對接網關,這裏爲了簡化在同一個服務下只使用邏輯分層定義controller層與service層,並無作服務拆分
定義 spring boot 配置
server: port: 8081 spring: application: name: zlt-web-dubbo main: allow-bean-definition-overriding: true cloud: nacos: server-addr: 192.168.28.130:8848 username: nacos password: nacos
server.port
:配置應用服務器暴露的端口
spring.cloud.nacos
:配置 spring cloud 的註冊中心相關參數,nacos 的配置須要改成本身環境所對應
定義 dubbo 配置
dubbo: scan: base-packages: org.zlt.service protocols: dubbo: name: dubbo port: -1 registry: address: spring-cloud://localhost consumer: timeout: 5000 check: false retries: 0 cloud: subscribed-services:
dubbo.scan.base-packages
:指定 Dubbo 服務實現類的掃描基準包
dubbo.protocols
:服務暴露的協議配置,其中子屬性name
爲協議名稱,port
爲協議端口( -1 表示自增端口,從 20880 開始)
dubbo.registry.address
:Dubbo 服務註冊中心配置,其中子屬性address
的值 "spring-cloud://localhost",說明掛載到 Spring Cloud 註冊中心
經過 protocol = "dubbo"
指定使用 dubbo協議
定義服務
@Service(protocol = "dubbo") public class DubboServiceImpl implements DubboService { @Override public String test(String param) { return "dubbo service: " + param; } }
使用 Spring Boot
的 @RestController
註解定義web服務
@RestController public class WebController { @Autowired private DubboService dubboService; @GetMapping("/test/{p}") public String test(@PathVariable("p") String param) { return dubboService.test(param); } }
使用 方式二 整合對接網關,因爲該服務是經過dubbo來建立rest服務,因此並不須要使用 Spring Boot 內置應用服務
定義 spring boot 配置
spring: application: name: zlt-rest-dubbo main: allow-bean-definition-overriding: true cloud: nacos: server-addr: 192.168.28.130:8848 username: nacos password: nacos
由於不使用 Spring Boot 內置的應用服務因此這裏並不須要指定
server.port
定義 dubbo 配置
dubbo: scan: base-packages: org.zlt.service protocols: dubbo: name: dubbo port: -1 rest: name: rest port: 8080 server: netty registry: address: spring-cloud://localhost consumer: timeout: 5000 check: false retries: 0 cloud: subscribed-services:
dubbo.protocols
:配置兩種協議,其中rest協議定義 8080 端口並使用 netty 做爲應用服務器
經過 protocol = "rest"
指定使用 rest協議
定義服務
@Service(protocol = "rest") @Path("/") public class RestServiceImpl implements RestService { @Override @Path("test/{p}") @GET public String test(@PathParam("p") String param) { return "rest service: " + param; } }
定義 spring boot 配置
server: port: 9900 spring: application: name: sc-gateway main: allow-bean-definition-overriding: true cloud: nacos: server-addr: 192.168.28.130:8848 username: nacos password: nacos
server.port
:定義網關端口爲 9090
定義網關配置
spring: cloud: gateway: discovery: locator: lowerCaseServiceId: true enabled: true routes: - id: web uri: lb://zlt-web-dubbo predicates: - Path=/api-web/** filters: - StripPrefix=1 - id: rest uri: lb://zlt-rest-dubbo predicates: - Path=/api-rest/** filters: - StripPrefix=1
分別定義兩個路由策略:
/api-web/
爲請求 web-dubbo
工程/api-rest/
爲請求 rest-dubbo
工程
分別啓動:Nacos、sc-gateway、web-dubbo、rest-dubbo 工程,經過網關的如下兩個接口分別測試兩種整合方式
web-dubbo
工程測試整合方式一rest-dubbo
工程測試整合方式二
ide須要安裝 lombok
插件