Spring Cloud Eureka 註冊中心叢集搭建,Greenwich 最新版!

Java菜分享發表於2019-04-03

Spring Cloud 的註冊中心可以由 Eureka、Consul、Zookeeper、ETCD 等來實現,這裡推薦使用 Spring Cloud Eureka 來實現註冊中心,它基於 Netflix 的 Eureka 做了二次封裝,完成分散式服務中服務治理的功能,微服務系統中的服務註冊與發現都通過這個註冊中心來進行管理。

jin就來分享一個 Eureka 註冊中心玩法,從 0 到分散式叢集一步到位,單機版的我們就不玩了,沒意義。

本文基於最新的 Spring Cloud Greenwich.SR1 以及 Spring Boot 2.1.3 版本進行分享。

快速構建一個 Eureka Server 專案

開啟 Spring 的快速構建網址,如下圖所示,選擇對應的引數,最後選擇 Eureka Server 依賴,生成專案示例程式碼即可。

https://start.spring.io/


Spring Cloud Eureka 註冊中心叢集搭建,Greenwich 最新版!


Spring Cloud Eureka 註冊中心叢集搭建,Greenwich 最新版!


棧長這裡是生成了一個 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>
    <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.javastack</groupId>
    <artifactId>spring-cloud--eureka-server</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>spring-cloud--eureka-server</name>
    <description>Demo project for Spring Cloud Eureka Server</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>
複製程式碼

主要是加入了 Eureka Server 和 Spring Test 依賴包,還有 Spring Boot 和 Spring Cloud 的基礎依賴。

Maven就不多介紹了,不熟悉的,請關注Java技術棧微信公眾號,在後臺回覆:Maven,即可獲取棧長整理的一系列 Maven 系列教程文章。

開啟 Eureka Server 功能

@EnableEurekaServer
@SpringBootApplication
public class EurekaServerApplication {
    public static void main(String[] args) {
        SpringApplication.run(EurekaServerApplication.class, args);
    }
}
複製程式碼

在啟動類上加入 @EnableEurekaServer 註解,@EnableEurekaServer註解即開啟註冊中心伺服器的功能。

Spring Boot就不多介紹了,不熟悉的,請關注Java技術棧微信公眾號,在後臺回覆:Boot,即可獲取棧長整理的一系列 Spring Boot 系列教程文章。

新增 Eureka Server 配置

在 application.yml 中加入如下配置:

spring:
  application:
    name: register-center
eureka:
  instance:
    prefer-ip-address: false
    instance-id: ${spring.cloud.client.ip-address}:${server.port}
    lease-expiration-duration-in-seconds: 30
    lease-renewal-interval-in-seconds: 5
  server:
    enable-self-preservation: true
    eviction-interval-timer-in-ms: 5000
  client:
    register-with-eureka: true
    fetch-registry: true
    serviceUrl:
      defaultZone: http://eureka1:8761/eureka/, http://eureka2:8762/eureka/
logging.level.com.netflix:
  eureka: OFF
  discovery: OFF
---
spring:
  profiles: rc1
server:
  port: 8761
eureka.instance.hostname: eureka1
---
spring:
  profiles: rc2
server:
  port: 8762
eureka.instance.hostname: eureka2
複製程式碼


這裡做了兩臺註冊中心的高可用配置rc1,rc2,也可以做多臺,既然是高可用,每個註冊中心都向別的註冊中心註冊自己。

注意不要用Localhost

Spring Cloud Eureka 註冊中心叢集搭建,Greenwich 最新版!


如上圖所示,如果大家在實戰中遇到叢集不可用,出現在 unavailable-replicas 裡面時,說明是你配置的問題。

如果 defaultZone 用了 localhost,prefer-ip-address 設定的是 false,則叢集不行,不能用 localhost,要配置 hosts,並代替 localhost。

127.0.0.1 localhost eureka1 eureka2
複製程式碼

啟動 Eureka 註冊中心

這樣兩個註冊心的 Eureka Server 就搭好了,啟動的時候使用不同的 Profile 來指定不同的埠。

spring-boot:run -Dspring-boot.run.profiles=rc1
spring-boot:run -Dspring-boot.run.profiles=rc2
複製程式碼

按上方面命令啟動兩個 Eureka Server,然後再來驗證一下注冊情況,分別開啟兩個 Eureka Server 控制檯頁面。

http://localhost:8761/http://localhost:8762/


Spring Cloud Eureka 註冊中心叢集搭建,Greenwich 最新版!


我們可以看到兩個註冊的註冊中心例項了。

歡迎工作一到五年的Java工程師朋友們加入Java程式設計師開發: 721575865

群內提供免費的Java架構學習資料(裡面有高可用、高併發、高效能及分散式、Jvm效能調優、Spring原始碼,MyBatis,Netty,Redis,Kafka,Mysql,Zookeeper,Tomcat,Docker,Dubbo,Nginx等多個知識點的架構資料)合理利用自己每一分每一秒的時間來學習提升自己,不要再用"沒有時間“來掩飾自己思想上的懶惰!趁年輕,使勁拼,給未來的自己一個交代!



相關文章