SpringCloud(第 027 篇)集成異構微服務系統到 SpringCloud 生態圈中(好比集成 nodejs 微服務)

SpringCloud(第 027 篇)集成異構微服務系統到 SpringCloud 生態圈中(好比集成 nodejs 微服務)

-java

1、大體介紹

一、在一些稍微複雜點系統中,每每都不是單一代碼寫的服務,而偏偏相反集成了各類語言寫的系統,而且咱們還要很好的解耦合集成到本身的系統中;
二、出於上述現狀,SpringCloud 生態圈中給咱們提供了很好的插件式服務,利用 sidecar 咱們也能夠輕鬆方便的集成異構系統到咱們本身的系統來;
三、而本章節目的就是爲了解決輕鬆簡便的集成異構系統到本身的微服務系統中來的;

2、實現步驟

2.1 添加 maven 引用包

<?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>

    <artifactId>springms-sidecar</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>

    <parent>
        <groupId>com.springms.cloud</groupId>
        <artifactId>springms-spring-cloud</artifactId>
        <version>1.0-SNAPSHOT</version>
    </parent>

    <dependencies>
        <!-- 異構系統模塊 -->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-netflix-sidecar</artifactId>
        </dependency>

        <!-- 客戶端發現模塊,因爲文檔說 Zuul 的依賴裏面不包括 eureka 客戶端發現模塊,因此這裏還得單獨添加進來 -->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-eureka</artifactId>
        </dependency>
    </dependencies>

</project>

2.2 添加應用配置文件(springms-sidecarsrcmainresourcesapplication.yml)

spring:
  application:
    name: springms-sidecar
server:
  port: 8210
eureka:
  datacenter: SpringCloud   # 修改 http://localhost:8761 地址 Eureka 首頁上面 System Status 的 Data center 顯示信息
  environment: Test         # 修改 http://localhost:8761 地址 Eureka 首頁上面 System Status 的 Environment 顯示信息
  client:
    service-url:
      defaultZone: http://admin:admin@localhost:8761/eureka
    healthcheck:  # 健康檢查
      enabled: true
  instance:
    prefer-ip-address: true
    instance-id: ${spring.application.name}:${spring.cloud.client.ipAddress}:${spring.application.instance_id:${server.port}}



#####################################################################################################
# 打印日誌
logging:
  level:
    root: INFO
    com.springms: DEBUG
#####################################################################################################





#####################################################################################################
# 異構微服務的配置, port 表明異構微服務的端口;health-uri 表明異構微服務的操做連接地址
sidecar:
  port: 8205
  health-uri: http://localhost:8205/health.json
#####################################################################################################

2.3 添加sidecar微服務啓動類(springms-sidecarsrcmainjavacomspringmscloudMsSideCarApplication.java)

package com.springms.cloud;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.sidecar.EnableSidecar;

/**
 * 集成異構微服務系統到 SpringCloud 生態圈中(好比集成 nodejs 微服務)。
 *
 * 注意 EnableSidecar 註解能註冊到 eureka 服務上,是由於該註解包含了 eureka 客戶端的註解,該 EnableZuulProxy 是一個複合註解。
 *
 * @EnableSidecar --> { @EnableCircuitBreaker、@EnableDiscoveryClient、@EnableZuulProxy } 包含了 eureka 客戶端註解,同時也包含了 Hystrix 斷路器模塊註解,還包含了 zuul API網關模塊。
 *
 * @author hmilyylimh
 *
 * @version 0.0.1
 *
 * @date 2017/9/28
 *
 */
@SpringBootApplication
@EnableSidecar
public class MsSideCarApplication {

    public static void main(String[] args) {
        SpringApplication.run(MsSideCarApplication.class, args);
        System.out.println("【【【【【【 SideCar 微服務 】】】】】】已啓動.");
    }
}

3、測試

/****************************************************************************************
 1、集成異構微服務系統到 SpringCloud 生態圈中(好比集成 nodejs 微服務)(正常狀況測試):

 一、編寫 application.yml 文件,添加應用程序的註解 EnableSidecar 配置;
 二、啓動 springms-discovery-eureka 模塊服務,啓動1個端口;
 三、啓動 springms-gateway-zuul-fallback 模塊服務,啓動1個端口;
 四、啓動 springms-sidecar 模塊服務,啓動1個端口;
 五、啓動 springms-node-service 微服務,啓動1個端口;

 六、新起網頁頁籤,輸入 http://localhost:8205/ 正常狀況下是能看到 "歡迎來到簡單異構系統之 nodejs 服務首頁" 信息被打印出來;
 七、新起網頁頁籤,而後輸入 http://localhost:8205/health.json,正常狀況下是能看到 "{"status":"UP"}" 信息被打印出來;

 總結一:nodejs 微服務,本身訪問本身都是正常的;

 八、新起網頁頁籤,輸入 http://localhost:8200/springms-sidecar/ 正常狀況下是能看到 "歡迎來到簡單異構系統之 nodejs 服務首頁" 信息被打印出來;
 九、新起網頁頁籤,而後輸入 http://localhost:8200/springms-sidecar/health.json,正常狀況下是能看到 "{"status":"UP"}" 信息被打印出來;

 總結二:經過在yml配置文件中添加 sidecar 屬性,就能夠將異構系統添加到SpringCloud生態圈中,完美無縫銜接;
 ****************************************************************************************/

/****************************************************************************************
 2、集成異構微服務系統到 SpringCloud 生態圈中(好比集成 nodejs 微服務)(除了包含異構微服務外,還添加 Ribbon 模塊電影微服務):

 一、編寫 application.yml 文件,添加應用程序的註解 EnableSidecar 配置;
 二、啓動 springms-discovery-eureka 模塊服務,啓動1個端口;
 三、啓動 springms-gateway-zuul-fallback 模塊服務,啓動1個端口;
 四、啓動 springms-sidecar 模塊服務,啓動1個端口;
 五、啓動 springms-consumer-movie-ribbon 模塊服務,啓動1個端口;
 六、啓動 springms-node-service 微服務,啓動1個端口;

 七、新起網頁頁籤,輸入 http://localhost:8205/ 正常狀況下是能看到 "歡迎來到簡單異構系統之 nodejs 服務首頁" 信息被打印出來;
 八、新起網頁頁籤,而後輸入 http://localhost:8205/health.json 正常狀況下是能看到 "{"status":"UP"}" 信息被打印出來;

 總結一:nodejs 微服務,本身訪問本身都是正常的;

 九、新起網頁頁籤,輸入 http://localhost:8200/springms-sidecar/ 正常狀況下是能看到 "歡迎來到簡單異構系統之 nodejs 服務首頁" 信息被打印出來;
 十、新起網頁頁籤,而後輸入 http://localhost:8200/springms-sidecar/health.json 正常狀況下是能看到 "{"status":"UP"}" 信息被打印出來;

 總結二:經過 Zuul 代理模塊,統一入口路徑,也能夠從 zuul 上成功訪問異構系統;

 十一、新起網頁頁籤,輸入 http://localhost:8010/sidecar/ 正常狀況下是能看到 "歡迎來到簡單異構系統之 nodejs 服務首頁" 信息被打印出來;
 十二、新起網頁頁籤,而後輸入 http://localhost:8010/sidecar/health.json 正常狀況下是能看到 "{"status":"UP"}" 信息被打印出來;

 總結三:給 springms-consumer-movie-ribbon 微服務添加幾個方法,也能夠成功訪問以異構系統,可見利用 SpringCloud 來集成異構系統簡便了不少;
 ****************************************************************************************/

4、下載地址

https://gitee.com/ylimhhmily/SpringCloudTutorial.gitnode

SpringCloudTutorial交流QQ羣: 235322432git

SpringCloudTutorial交流微信羣: 微信溝通羣二維碼圖片連接spring

歡迎關注,您的確定是對我最大的支持!!!apache

相關文章
相關標籤/搜索