91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎樣進行搭建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

北宁市| 安阳市| 政和县| 张北县| 泊头市| 旌德县| 虹口区| 格尔木市| 临邑县| 富平县| 阳高县| 泰安市| 隆安县| 安阳市| 淮滨县| 新建县| 河间市| 旬阳县| 罗田县| 东宁县| 宝应县| 罗源县| 宣汉县| 阳城县| 永德县| 莒南县| 雷波县| 徐汇区| 蓝山县| 酒泉市| 临夏市| 长岛县| 措勤县| 太谷县| 游戏| 浪卡子县| 曲周县| 闻喜县| 旌德县| 淳安县| 赣州市|