在微服務(wù)中,服務(wù)注冊(cè)與發(fā)現(xiàn)對(duì)管理各個(gè)微服務(wù)子系統(tǒng)起著關(guān)鍵作用。隨著系統(tǒng)水平擴(kuò)展的越來越多,系統(tǒng)拆分為微服務(wù)的數(shù)量也會(huì)相應(yīng)增加,那么管理和獲取這些微服務(wù)的URL就會(huì)變得十分棘手,如果我們每新加一個(gè)微服務(wù),就要在其它用到此微服務(wù)的地方手動(dòng)加上它的URL地址或者其他通信協(xié)議的地址,這樣會(huì)經(jīng)常出錯(cuò),而且工作量巨大,一旦某個(gè)微服務(wù)的地址發(fā)生了變化,就要手動(dòng)修改所有引用它的微服務(wù)的配置文件。所以spring-cloud eureka server就是為了解決這樣的問題而出現(xiàn),經(jīng)過簡(jiǎn)單的配置,即可自動(dòng)注冊(cè)和發(fā)現(xiàn)微服務(wù)。
成都創(chuàng)新互聯(lián)公司長(zhǎng)期為1000+客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對(duì)不同對(duì)象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺(tái),與合作伙伴共同營(yíng)造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為襄陽企業(yè)提供專業(yè)的成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作,襄陽網(wǎng)站改版等技術(shù)服務(wù)。擁有10余年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。
Gitee碼云
上篇博客我們介紹了如何搭建spring-cloud的配置中心,還有一個(gè)測(cè)試的web client去訪問它,這次我們?cè)谥暗幕A(chǔ)上搭建一個(gè)eureka server,并且讀取配置中心的配置,然后把web client作為Discovery Client注冊(cè)到eureka服務(wù)。首先在IntelliJ下新建一個(gè)Maven項(xiàng)目:
然后在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>cn.zxuqian</groupId>
<artifactId>registry</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.1.RELEASE</version>
<relativePath/>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</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>Finchley.M9</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/libs-milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>
這里用到了spring-cloud-starter-netflix-eureka-server
這個(gè)eureka-server核心依賴,還有訪問配置中心服務(wù)的客戶端組件spring-cloud-starter-config
。
然后在src/main/resources
下創(chuàng)建bootstrap.yml
文件,添加如下配置:
spring:
application:
name: eureka-server
cloud:
config:
uri: http://localhost:8888
此文件配置了用以讀取配置文件的應(yīng)用名,即spring.application.name
,它的名字對(duì)應(yīng)于服務(wù)中心的文件名。另外Eureka的自動(dòng)注冊(cè)和發(fā)現(xiàn)也是基于這個(gè)參數(shù)的。然后配置了配置服務(wù)中心的uri。
新建一個(gè)Java類,cn.zxuqian.Application
,使用如下代碼:
package cn.zxuqian;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@EnableEurekaServer
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
這里只用@EnableEurekaServer
一條注解即把該應(yīng)用配置為Eureka Server。然后在配置中心的git倉庫中創(chuàng)建eureka-server.yml
文件,添加如下配置:
server:
port: 8761
eureka:
client:
register-with-eureka: false
fetch-registry: false
此文件配置了eureka-server的端口,以及關(guān)閉eureka自我注冊(cè)和發(fā)現(xiàn),因?yàn)槿绻魂P(guān)閉的話,eureka在啟動(dòng)過程中就會(huì)去嘗試注冊(cè)自己,然而發(fā)現(xiàn)服務(wù)并沒有啟動(dòng)就會(huì)報(bào)錯(cuò)。到此,eureka server就配置完了。
現(xiàn)在我們要更新web client,使之可以被eureka自動(dòng)注冊(cè)和發(fā)現(xiàn)。首頁在pom.xml中添加eureka client的依賴:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
然后在Application
類中加上@EnableDiscoveryClient
注解:
@EnableDiscoveryClient
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
最后我們創(chuàng)建一個(gè)類用以測(cè)試服務(wù)是不是已成功注冊(cè)和發(fā)現(xiàn)。新建一個(gè)Java類cn.zxuqian.controllers.ServiceInstanceController
,添加如下代碼:
package cn.zxuqian.controllers;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cloud.client.ServiceInstance;
import org.springframework.cloud.client.discovery.DiscoveryClient;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
@RestController
public class ServiceInstanceController {
@Autowired
private DiscoveryClient discoveryClient;
@RequestMapping("/service-instances/{applicationName}")
public List<ServiceInstance> serviceInstancesByApplicationName(
@PathVariable String applicationName) {
return this.discoveryClient.getInstances(applicationName);
}
}
這是一個(gè)普通的RestController, 定義了一個(gè)DiscoveryClient
類型的變量并添加了@Autowire
注解。此注解是Spring框架提供的依賴注入功能,在Spring的context下,它會(huì)自動(dòng)尋找DiscoveryClient
的實(shí)現(xiàn)類,此處是eureka client。關(guān)于Spring的一些特性和原理,將在以后的博文中講到。
此類還定義了serviceInstancesByApplicationName
方法,用以處理/service-instances/{applicationName}
請(qǐng)求。這里的{applicationName}
匹配url路徑中/service-instances/
以后的部分,然后用@PathVariable
注解賦值給方法的applicationName
參數(shù)。例如訪問http://localhost:8080/service-instances/web-client
,那么applicationName
的值就是web-client
。方法的作用是從discoveryClient中根據(jù)spring.application.name
的值來取出對(duì)應(yīng)的實(shí)例信息,返回的是一個(gè)list,會(huì)自動(dòng)轉(zhuǎn)換為json數(shù)組的形式返回給瀏覽器。
因?yàn)閑ureka server和web client都需要從配置服務(wù)中讀取配置,所以先啟動(dòng)config-server,然后再啟動(dòng)eureka-server,最后啟動(dòng)web-client,在啟動(dòng)成功后可能需要稍等十幾秒讓eureka-server發(fā)現(xiàn)和注冊(cè)web-client。完成之后訪問http://localhost:8080/service-instances/web-client
,會(huì)得到如下結(jié)果:
[{"host":"xuqians-imac","port":8080,"instanceInfo":{"instanceId":"xuqians-imac:web-client","app":"WEB-CLIENT","appGroupName":null,"ipAddr":"192.168.72.31","sid":"na","homePageUrl":"http://xuqians-imac:8080/","statusPageUrl":"http://xuqians-imac:8080/actuator/info","healthCheckUrl":"http://xuqians-imac:8080/actuator/health","secureHealthCheckUrl":null,"vipAddress":"web-client","secureVipAddress":"web-client","countryId":1,"dataCenterInfo":{"@class":"com.netflix.appinfo.InstanceInfo$DefaultDataCenterInfo","name":"MyOwn"},"hostName":"xuqians-imac","status":"UP","leaseInfo":{"renewalIntervalInSecs":30,"durationInSecs":90,"registrationTimestamp":1525319124967,"lastRenewalTimestamp":1525319124967,"evictionTimestamp":0,"serviceUpTimestamp":1525319124363},"isCoordinatingDiscoveryServer":false,"metadata":{"management.port":"8080"},"lastUpdatedTimestamp":1525319124967,"lastDirtyTimestamp":1525319124297,"actionType":"ADDED","asgName":null,"overriddenStatus":"UNKNOWN"},"metadata":{"management.port":"8080"},"uri":"http://xuqians-imac:8080","serviceId":"WEB-CLIENT","secure":false,"scheme":null}]
注意一下,這里并沒有把配置中心服務(wù)設(shè)置為可以被eureka server注冊(cè)和發(fā)現(xiàn),因?yàn)檫@里把配置文件都放到了config-server中,它和eureka server有著雞生蛋,蛋生雞的問題,所以如果要讓config-server被自動(dòng)注冊(cè)和發(fā)現(xiàn),那么就需要單獨(dú)配置eureka server,然后在config server中配置eureka的uri,以及設(shè)置spring.cloud.config.discovery.enabled
為true。具體以后需要用的時(shí)候再詳細(xì)說明。
配置eureka server相當(dāng)簡(jiǎn)單,只需要加一條@EnableEurekaServer
注解,并在配置中關(guān)閉自我注冊(cè)和發(fā)現(xiàn)即可。然后在客戶端應(yīng)用的Application類中加上@EnableDiscoveryClient
注解即可。
歡迎訪問我的博客
本文名稱:SpringCloud入門教程-Eureka服務(wù)注冊(cè)與發(fā)現(xiàn)
標(biāo)題鏈接:http://jinyejixie.com/article16/iepigg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供標(biāo)簽優(yōu)化、定制開發(fā)、網(wǎng)站設(shè)計(jì)公司、域名注冊(cè)、網(wǎng)站營(yíng)銷、做網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)