Dubbo想要個網關怎麼辦?試試整合Spring Cloud Gateway

Dubbo想要個網關怎麼辦?試試整合Spring Cloud Gateway

1、背景

在微服務架構中 API網關 很是重要,網關做爲全局流量入口並不僅僅是一個反向路由,更多的是把各個邊緣服務(Web層)的各類共性需求抽取出來放在一個公共的「服務」(網關)中實現,例如安全認證、權限控制、限流熔斷、監控、跨域處理、聚合API文檔等公共功能。前端

 

在以 Dubbo 框架體系來構建的微服務架構下想要增長API網關,若是不想自研開發的狀況下在目前的開源社區中幾乎沒有找到支持dubbo協議的主流網關,可是 Spring Cloud 體系下卻有兩個很是熱門的開源API網關能夠選擇;本文主要介紹如何經過 Nacos 整合 Spring Cloud GatewayDubbo 服務java

 

2、傳統 dubbo 架構

dubbo屬於rpc調用,因此必須提供一個web層的服務做爲http入口給客戶端調用,並在上面提供安全認證等基礎功能,而web層前面對接Nginx等反向代理用於統一入口和負載均衡。git

web層通常是根據業務模塊來切分的,用於聚合某個業務模塊所依賴的各個service服務github

Dubbo想要個網關怎麼辦?試試整合Spring Cloud Gateway

PS:咱們可否把上圖中的web層所有整合在一塊兒成爲一個API網關呢?(不建議這樣作)web

由於這樣的web層並無實現 泛化調用 必須引入全部dubbo服務的api依賴,會使得網關變得很是不穩定,任何服務的接口變動都須要修改網關中的api依賴!redis

 

3、整合 Spring Cloud Gateway 網關

下面就開始聊聊直接拿熱門的 Spring Cloud Gateway 來做爲dubbo架構體系的網關是否可行,首先該API網關是屬於 Spring Cloud 體系下的組件之一,要整合dubbo的話須要解決如下問題:spring

  1. 打通註冊中心:spring cloud gateway 須要經過註冊中心發現下游服務,而 dubbo 也須要經過註冊中心實現服務的註冊與發現,若是二者的註冊中心不能打通的話就會變成雙註冊中心架構就很是複雜了!
  2. 協議轉換: gateway 使用http傳輸協議調用下游服務,而dubbo服務默認使用的是tcp傳輸協議

上面提到的第一個問題「打通註冊中心」其實已經不是問題了,目前dubbo支持 ZookeeperNacos 兩個註冊中心,而 Spring Cloud 自從把 @EnableEurekaClient 改成 @EnableDiscoveryClient 以後已經基本上支持全部主流的註冊中心了,本文將使用 Nacos 做爲註冊中心打通二者api

 

3.1. 方式一

把傳統dubbo架構中的 Nginx 替換爲 Spring Cloud Gateway ,並把 安全認證 等共性功能前移至網關處實現
Dubbo想要個網關怎麼辦?試試整合Spring Cloud Gateway跨域

因爲web層服務自己提供的就是http接口,因此網關層無需做協議轉換,可是因爲 安全認證 前移至網關了須要經過網絡隔離的手段防止被繞過網關直接請求後面的web層安全

 

3.2. 方式二

dubbo服務自己修改或添加 rest 傳輸協議的支持,這樣網關就能夠經過http傳輸協議與dubbo服務通訊了

rest傳輸協議:基於標準的Java REST API——JAX-RS 2.0(Java API for RESTful Web Services的簡寫)實現的REST調用支持

Dubbo想要個網關怎麼辦?試試整合Spring Cloud Gateway

目前版本的dubbo已經支持dubbo、rest、rmi、hessian、http、webservice、thrift、redis等10種傳輸協議了,而且還支持同一個服務同時定義多種協議,例如配置 protocol = { "dubbo", "rest" } 則該服務同時支持 dubborest 兩種傳輸協議

 

3.3. 總結

方式一 對比 方式二 多了一層web服務因此多了一次網絡調用開銷,可是優勢是各自的職責明確單一,web層能夠做爲聚合層用於聚合多個service服務的結果通過融合加工一併返回給前端,因此這種架構下能大大減小服務的 循環依賴

 

4、代碼實踐

依賴環境

  • lombok
  • jdk 1.8
  • Nacos 1.3
  • Spring Boot 2.2.8.RELEASE
  • Spring Cloud Hoxton.SR5
  • Spring Cloud Alibaba 2.2.1.RELEASE

 

在根目錄的 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>

 

4.1. 建立dubbo-api工程

分別定義兩個api接口

DubboService 使用dubbo協議的服務

public interface DubboService {
    String test(String param);
}

RestService 使用rest協議的服務

public interface RestService {
    String test(String param);
}

 

4.2. 建立web-dubbo工程

使用 方式一 整合對接網關,這裏爲了簡化在同一個服務下只使用邏輯分層定義controller層與service層,並無作服務拆分

4.2.1. 建立配置

定義 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 註冊中心

 

4.2.2. 建立DubboService的實現類

經過 protocol = "dubbo" 指定使用 dubbo協議 定義服務

@Service(protocol = "dubbo")
public class DubboServiceImpl implements DubboService {
    @Override
    public String test(String param) {
        return "dubbo service: " + param;
    }
}

 

4.2.3. 建立Controller類

使用 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);
    }
}

 

4.3. 建立rest-dubbo工程

使用 方式二 整合對接網關,因爲該服務是經過dubbo來建立rest服務,因此並不須要使用 Spring Boot 內置應用服務

4.3.1. 建立配置

定義 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 做爲應用服務器

 

4.3.2. 建立RestService的實現類

經過 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;
    }
}

 

4.4. 建立Spring Cloud Gateway工程

定義 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 工程

 

4.5. 測試

分別啓動:Nacos、sc-gateway、web-dubbo、rest-dubbo 工程,經過網關的如下兩個接口分別測試兩種整合方式

  1. http://127.0.0.1:9900/api-web/test/abc :請求 web-dubbo 工程測試整合方式一
  2. http://127.0.0.1:9900/api-rest/test/abc :請求 rest-dubbo 工程測試整合方式二

 

5、demo下載

ide須要安裝 lombok 插件

https://github.com/zlt2000/dubboSpringCloud

相關文章
相關標籤/搜索