亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

怎樣進行搭建Eureka注冊中心

發布時間:2021-12-13 10:41:25 來源:億速云 閱讀:132 作者:柒染 欄目:軟件技術

這篇文章給大家介紹怎樣進行搭建Eureka注冊中心,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

一 創建一個Spring Boot工程,命名為eureka-server,并在pom.xml中引入必要的依賴。

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.3.7.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-eureka-server</artifactId>
        </dependency>
 
        <!--<dependency>-->
            <!--<groupId>org.springframework.boot</groupId>-->
            <!--<artifactId>spring-boot-starter-actuator</artifactId>-->
        <!--</dependency>-->
    </dependencies>
 
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>Brixton.SR5</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

二 通過@EnableEurekaServer注解啟動一個服務注冊中心提供給其他應用程序進行對話,只需要在Spring  Boot應用中添加下面這個注解就能開啟此功能。

@EnableEurekaServer
@SpringBootApplication
public class Application {
 
    public static void main(String[] args) {
        new SpringApplicationBuilder(Application.class).web(true).run(args);
    }
 
}

三 在默認情況下,服務注冊中也會將自己作為客戶端來嘗試注冊它自己,所以需要禁用它的客戶端行為。

application.properties中增加如下配置。
spring.application.name=eureka-server
server.port=1111
 
eureka.instance.hostname=localhost
 
# 關閉保護機制
#eureka.server.enable-self-preservation=false
 
eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
eureka.client.serviceUrl.defaultZone=http://${eureka.instance.hostname}:${server.port}/eureka/
 
logging.file=${spring.application.name}.log

說明:

eureka.client.register-with-eureka:由于該應用為注冊中心,所以設置為false,代表不向注冊中心注冊自己。

eureka.client.fetch-registry:由于注冊中心的職責就是維護服務實例,它并不需要去檢索服務,所以也設置為false。

關于怎樣進行搭建Eureka注冊中心就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乌拉特前旗| 于都县| 西乌珠穆沁旗| 肥东县| 保靖县| 崇阳县| 奉新县| 红桥区| 徐闻县| 肥东县| 开阳县| 杭州市| 临澧县| 马尔康县| 满洲里市| 和硕县| 徐州市| 通城县| 沙洋县| 罗甸县| 宜君县| 永济市| 富锦市| 林口县| 灵石县| 绥化市| 都安| 旬阳县| 理塘县| 贡嘎县| 仙桃市| 徐汇区| 喀什市| 乐清市| 崇文区| 崇州市| 万全县| 阳江市| 泽普县| 高青县| 册亨县|