溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Spring Cloud Netflix中Eureka的服務(wù)注冊與發(fā)現(xiàn)有什么

發(fā)布時(shí)間:2021-10-19 10:45:30 來源:億速云 閱讀:162 作者:柒染 欄目:大數(shù)據(jù)

Spring Cloud Netflix中Eureka的服務(wù)注冊與發(fā)現(xiàn)有什么,很多新手對此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

Spring cloud 簡介

Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)的工具(例如:配置管理,服務(wù)發(fā)現(xiàn),斷路器,智能路由,微代理,控制總線,一次性令牌,全局鎖,領(lǐng)導(dǎo)選舉,分布式會話,集群狀態(tài)等等)。 開發(fā)人員可以用Spring Cloud快速搭建具有以上功能的應(yīng)用程序。 它們可以在任何分布式環(huán)境中正常工作,包括開發(fā)人員自己的筆記本電腦,裸機(jī)數(shù)據(jù)中心以及Cloud Foundry等托管平臺。

創(chuàng)建服務(wù)注冊中心

我們創(chuàng)建一個(gè)工程來作為服務(wù)注冊中心,下面詳細(xì)說一下創(chuàng)建過程:

新建一個(gè)服務(wù)注冊中心

在IDEA新建一個(gè)項(xiàng)目->選擇spring initialir 如下圖: Spring Cloud Netflix中Eureka的服務(wù)注冊與發(fā)現(xiàn)有什么

點(diǎn)擊next->填寫項(xiàng)目metadata信息:

Spring Cloud Netflix中Eureka的服務(wù)注冊與發(fā)現(xiàn)有什么

點(diǎn)擊next->選擇Spring Cloud Discovery->右側(cè)選擇Eureka Server, 然后點(diǎn)擊下一步知道項(xiàng)目創(chuàng)建成功:

Spring Cloud Netflix中Eureka的服務(wù)注冊與發(fā)現(xiàn)有什么

創(chuàng)建完成后,pom.xml內(nèi)用如下:

<?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 https://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.9.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.noodles.mars</groupId>
    <artifactId>eureka-server</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>eureka-server</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>11</java.version>
        <spring-cloud.version>Greenwich.SR3</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>
啟用服務(wù)注冊中心配置

依賴spring-cloud-starter-netflix-eureka-server包后,啟用一個(gè)服務(wù)注冊中心很簡單,只要在啟動類上注解@EnableEurekaServer就可以了:

@EnableEurekaServer
@SpringBootApplication
public class EurekaServerApplication {

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

}
服務(wù)注冊中心項(xiàng)目配置

Eureka是一個(gè)高可用的組件,它是沒有后端緩存組件的,每一個(gè)實(shí)例注冊后需要向服務(wù)注冊中心發(fā)送心跳,默認(rèn)情況下,一個(gè)Eureka server同時(shí)也是一個(gè)client, 必須指定一個(gè)server。 服務(wù)注冊中心的配置文件:

server:
  port: 9090

eureka:
  instance:
    hostname: localhost
  client:
    register-with-eureka: false
    fetch-registry: false
    service-url:
      defaultZone: http://localhost:9090/eureka

啟動注冊中心,打開瀏覽器訪問: http://localhost:9090, 會看到如下界面,此時(shí)注冊列表是空的:

Spring Cloud Netflix中Eureka的服務(wù)注冊與發(fā)現(xiàn)有什么

新建一個(gè)服務(wù)提供者

項(xiàng)目創(chuàng)建步驟和創(chuàng)建注冊中心一樣,只是在選擇Spring Cloud Discovery時(shí)選擇Eureka Discovery Client:

Spring Cloud Netflix中Eureka的服務(wù)注冊與發(fā)現(xiàn)有什么

服務(wù)提供者項(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 https://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.9.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.noodles.mars</groupId>
    <artifactId>eureka-client</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>eureka-client</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>11</java.version>
        <spring-cloud.version>Greenwich.SR3</spring-cloud.version>
    </properties>

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

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</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>

開啟注冊服務(wù)提供也很簡單,首先要在Spring boot啟動類上注解@EnableEurekaClient,表明自己是Eureka Client:

@EnableEurekaClient
@SpringBootApplication
public class EurekaClientApplication {

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

}

然后配置服務(wù)注冊中心信息:

server:
  port: 8040

eureka:
  client:
    service-url:
      defaultZone: http://localhost:9090/eureka/

spring:
  application:
    name: hello-erueka-client

注意:這里需要指明spring.application.name, 應(yīng)用名稱將在隨后的服務(wù)間調(diào)用中用到。

在這里提供一個(gè)接口,隨后測試調(diào)用:

@RestController
public class HelloController {

    @Value("${server.port}")
    int port;

    @GetMapping("/hello")
    public String hello(@RequestParam("name") String name) {
        return String.format("Hello, My name is %s, I'm from port: %d", name, port);
    }
}

啟動項(xiàng)目,打開瀏覽器輸入http://localhost:9090, 打開注冊中心的網(wǎng)址:

Spring Cloud Netflix中Eureka的服務(wù)注冊與發(fā)現(xiàn)有什么

打開網(wǎng)頁后你會發(fā)現(xiàn)你的服務(wù)提供者已經(jīng)注冊在服務(wù)注冊中心了。

使用Postman或直接在瀏覽器中訪問服務(wù)提供者的接口,你會看到回應(yīng):

Hello, My name is Mars, I'm from port: 8040

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI