您好,登錄后才能下訂單哦!
這篇文章給大家介紹怎樣進行搭建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注冊中心就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。