Spring Cloud 基於Spring Boot 2.x的服務註冊與發現(Eureka)
一.Spring Cloud 簡介
Spring Cloud為開發人員提供了快速構建分散式系統中一些常見模式的工具(例如配置管理,服務發現,斷路器,智慧路由,微代理,控制匯流排,一次性令牌,全域性鎖定,領導選舉,分散式 會話,群集狀態)。 分散式系統的協調導致鍋爐板模式,使用Spring Cloud開發人員可以快速站出實現這些模式的服務和應用程式。 他們可以在任何分散式環境中執行良好,包括開發人員自己的膝上型電腦,裸機資料中心和託管平臺,如Cloud Foundry[1]。
二.註冊與發現
由於應用的分解,微服務的引入,服務越來越多,業務系統與服務系統之間的呼叫,都需要有效管理。這時候需要有一個註冊中心來管理所有的微服務,微服務啟動之後便在註冊中心中註冊自己的資訊,消費者只需要向註冊中心索要某種服務的資訊(包括host、port等)即可得到當前可用的服務。更多註冊與發現理論可以參考簡書中的一篇文章
三.建立服務註冊中心
3.1 建立工程
在右方的Search for dependencies 中輸入eureka server,選擇Eureka server依賴,最後點選Generate Project按鈕下載zip壓縮包。
解壓壓縮包到工作目錄中,解壓後的資料夾為Maven專案,在開發目錄中匯入該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.ywp</groupId>
<artifactId>EurekaServer</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>EurekaServer</name>
<description>Demo for EurekaServer</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.1.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>
</properties>
<dependencies>
<!--eureka server -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
<!-- spring boot test-->
<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>Finchley.M7</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>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>
3.2 添加註解
在Spring Boot啟動類上新增@EnableEurekaServer註解。
@SpringBootApplication
@EnableEurekaServer
public class EurekaServerApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaServerApplication.class, args);
}
}
3.2 新增配置
在application.properties檔案中新增:若沒有使用.properties檔案,則修改appication.yml:#註冊中心埠 server.port=7001 #主機名,會在控制頁面中顯示 eureka.instance.hostname=localhost #通過eureka.client.registerWithEureka:false和fetchRegistry:false來表明自己是一個eureka server. eureka.client.register-with-eureka=false eureka.client.fetch-registry=false eureka.client.service-url.defaultZone=http://${eureka.instance.hostname}:${server.port}/eureka/
server:
port: 7001
eureka:
instance:
hostname: localhost
client:
registerWithEureka: false
fetchRegistry: false
serviceUrl:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
3.3 啟動服務
啟動Spring Boot專案,在瀏覽器中輸入http://localhost:7001 即可進入Eureka主頁面。
四.建立服務提供者
提供者專案建立方式與註冊中心伺服器相同,並且做以下修改:
1. 需要將@EnableEurekaServer改為@EnableEurekaClient。
2. spring-cloud-starter-netflix-eureka-server依賴修改為spring-cloud-starter-netflix-eureka-client。
3. 修改application.properties,具體配置如下:
#服務埠
server.port=7002
#eureka主機名,會在控制頁面中顯示
eureka.instance.hostname=localhost
#eureka伺服器頁面中status的請求路徑
eureka.instance.status-page-url=http://localhost:7002/index
#eureka註冊中心伺服器地址
eureka.client.service-url.defaultZone=http://localhost:7001/eureka/
#服務名
spring.application.name=fileServer-01
最後啟動專案,再次進入註冊中心主頁面即可發現DS Replicas->Instances currently registered with Eureka中有新的服務。
參考文獻:
[1]. 點融黑幫. 服務註冊與發現[EB/OL], https://www.jianshu.com/p/c144a577f3d1,2016.11.18/2018.5.22
其他相關文章: