Eureka Server是一個包含所有用戶端服務應用程式資訊的應用程式。 每個Micro服務都將註冊到Eureka伺服器,Eureka伺服器知道在每個埠和IP地址上執行的所有用戶端應用程式。 Eureka Server也稱為發現服務(Discovery Server)。
在本章中,將詳細了解和學習如何構建Eureka伺服器。
Eureka Server附帶了Spring Cloud綑綁包。因此,需要開發Eureka伺服器並在預設埠8761
上執行它。
存取Spring Initializer主頁 https://start.spring.io/ 並下載具有Eureka伺服器依賴性的Spring Boot專案。如下面的截圖中 -
在生成並下載專案檔案後,需要新增@EnableEurekaServer
註解。 @EnableEurekaServer
註解用於將Spring Boot應用程式充當Eureka伺服器。
主Spring Boot應用程式類檔案的程式碼如下所示 -
package com.yiibai.eurekaserver;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@SpringBootApplication
@EnableEurekaServer
public class EurekaserverApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaserverApplication.class, args);
}
}
確保在構建組態檔案中新增了Spring cloud Eureka伺服器依賴項。
Maven依賴項的程式碼如下所示 -
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka-server</artifactId>
</dependency>
Gradle依賴項的程式碼如下 -
compile('org.springframework.cloud:spring-cloud-starter-eureka-server')
完整的構建組態檔案如下 -
Maven構建檔案: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>
<groupId>com.yiibai</groupId>
<artifactId>eurekaserver</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>eurekaserver</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<spring-cloud.version>Edgware.RELEASE</spring-cloud.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-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>
Gradle構建檔案 – build.gradle -
buildscript {
ext {
springBootVersion = '1.5.9.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
group = 'com.yiibai'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
ext {
springCloudVersion = 'Edgware.RELEASE'
}
dependencies {
compile('org.springframework.cloud:spring-cloud-starter-eureka-server')
testCompile('org.springframework.boot:spring-boot-starter-test')
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}
預設情況下,Eureka Server將自己註冊到發現中。將以下給定的組態新增到application.properties 檔案或application.yml 檔案中。
application.properties 檔案如下 -
eureka.client.registerWithEureka = false
eureka.client.fetchRegistry = false
server.port = 8761
application.yml 檔案如下 -
eureka:
client:
registerWithEureka: false
fetchRegistry: false
server:
port: 8761
現在,建立一個可執行的JAR檔案,並使用下面顯示的Maven或Gradle命令執行Spring Boot應用程式 -
對於Maven,使用如下命令 -
mvn clean install
在「BUILD SUCCESS」之後,在target
目錄下找到JAR檔案。
對於Gradle,使用下面命令 -
gradle clean build
在「BUILD SUCCESSFUL」 之後,可以在build/libs 目錄下找到JAR檔案。
現在,使用以下命令執行JAR檔案 -
D:\worksp\springboot\eurekaserver>java -jar target\eurekaserver-0.0.1-SNAPSHOT.jar
應用程式在Tomcat埠8761上成功啟動,如下所示 -