1. 程式人生 > >二、Spring Cloud—Eureka(Greenwich.SR1)

二、Spring Cloud—Eureka(Greenwich.SR1)

注:本系列文章所用工具及版本如下:開發工具(IDEA 2018.3.5),Spring Boot(2.1.3.RELEASE),Spring Cloud(Greenwich.SR1),Maven(3.6.0),JDK(1.8)

Eureka:

      Eureka是Netflix開發的服務發現框架,本身是一個基於REST的服務,主要用於定位執行在AWS域中的中間層服務,以達到負載均衡和中間層服務故障轉移的目的。SpringCloud將它整合在其子專案spring-cloud-netflix中,以實現SpringCloud的服務發現功能。

      Eureka包含兩個元件:Eureka Server和Eureka Client。

      Eureka Server提供服務註冊服務,各個節點啟動後,會在Eureka Server中進行註冊,EurekaServer中的服務登錄檔中將會儲存所有可用服務節點的資訊,服務節點的資訊可以在介面中直觀的看到。

      Eureka Client是一個java客戶端,用於簡化與Eureka Server的互動,客戶端同時也就是一個內建的、使用輪詢(round-robin)負載演算法的負載均衡器。

在服務發現和註冊中,有三種角色:

  • Eureka Server(註冊中心):提供服務註冊和發現;
  • Service Provider(服務提供方):將自身服務註冊到Eureka中心,從而使服務消費方能夠找到;
  • Service Consumer(服務消費方):從Eureka註冊中心獲取註冊服務列表,從而能夠消費服務;

一、構建Spring Cloud工程

(1)可通過https://start.spring.io/來建立Spring Cloud工程,如下圖:

如上圖所示,選擇Maven Project、Java、eureka-server,並填寫Project Metadata,點選“Generate Project”,生成對應的工程。

(2)通過IDEA提供的Spring Initializr來進行工程的建立,如下圖所示:

點選Next,完成專案的建立。

二、構建eureka-server註冊中心

在IDEA中新建工程spring-cloud-eureka-server工程,建立完成後,pom.xml檔案如下所示:

<?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>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.3.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>cn.jess.cloud</groupId>
    <artifactId>eureka</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>eureka-server</name>
    <description>Demo project for Spring Cloud Eureka</description>

    <properties>
        <java.version>1.8</java.version>
        <spring-cloud.version>Greenwich.SR1</spring-cloud.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>${spring-cloud.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

application.properties檔案如下所示:

server.port=8081

spring.application.name=eureka-server

eureka.instance.hostname=eureka-server

eureka.client.register-with-eureka=true
eureka.client.fetch-registry=true

eureka.server.enable-self-preservation=false
eureka.server.eviction-interval-timer-in-ms=10000
eureka.client.service-url.defaultZone=http://eureka-server1:8085/eureka/,http://eureka-server2:8082/eureka/

application-dev.properties檔案如下所示:

server.port=8085

spring.application.name=eureka-server

eureka.instance.hostname=eureka-server1
eureka.client.register-with-eureka=true
eureka.client.fetch-registry=true

eureka.instance.prefer-ip-address=false
#eureka.server.enable-self-preservation=false
eureka.server.eviction-interval-timer-in-ms=10000
eureka.client.service-url.defaultZone=http://eureka-server2:8082/eureka/,http://eureka-server:8081/eureka/

application-prod.properties檔案如下所示:

server.port=8082

spring.application.name=eureka-server

eureka.instance.hostname=eureka-server2
eureka.client.register-with-eureka=true
eureka.client.fetch-registry=true

eureka.instance.prefer-ip-address=false
#eureka.server.enable-self-preservation=false
eureka.server.eviction-interval-timer-in-ms=10000
eureka.client.service-url.defaultZone=http://eureka-server1:8085/eureka/,http://eureka-server:8081/eureka/

注意:上述的配置實是Eureka叢集配置,其中eureka-server、eureka-server1、eureka-server2需要在host檔案中進行配置,將其對映到127.0.0.1.

上述三個配置檔案中的spring.application.name必須保持一致。

EurekaApplication.java檔案如下:

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

@SpringBootApplication
@EnableEurekaServer
public class EurekaApplication {

    public static void main(String[] args) {
        SpringApplication.run(EurekaApplication.class, args);
    }
}

至此,最簡單的Eureka註冊中心叢集配置已經完成。

啟動EurekaApplication三個例項,分別用application.properties、application-dev.properties、application-prod.properties,

在瀏覽器地址輸入http://localhost:8081/或http://localhost:8085/或http://localhost:8082/,如下圖所示:

注意:DS Replicas下顯示的叢集中的其他伺服器;Instances currently registered with Eureka下顯示的是註冊例項的個數,General Info顯示的是一般資訊,availabe-replicas顯示可用的叢集中