溫馨提示×

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

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

spring cloud(三):Eureka服務(wù)的搭建

發(fā)布時(shí)間:2020-07-09 02:34:25 來(lái)源:網(wǎng)絡(luò) 閱讀:1296 作者:browser123 欄目:軟件技術(shù)

1、 概念:  Eureka - 云端服務(wù)發(fā)現(xiàn),一個(gè)基于 REST 的服務(wù),用于定位服務(wù),以實(shí)現(xiàn)云端中間層服務(wù)發(fā)現(xiàn)和故障轉(zhuǎn)移。


2、  搭建:a、首先講下單機(jī)搭建,先新建一個(gè)maven項(xiàng)目,在pom里面導(dǎo)入eureka的坐標(biāo):

                    <dependencies>

                    <parent>

                        <groupId>org.springframework.boot</groupId>

                        <artifactId>spring-boot-starter-parent</artifactId>

                        <version>1.4.0.RELEASE</version>

                      </parent>

                    <dependency>

                      <groupId>org.springframework.cloud</groupId>

                      <artifactId>spring-cloud-starter-eureka-server</artifactId>

                    </dependency>

                    </dependencies>


                b、新建類EurekaApplication

                        @SpringBootApplication

                        @EnableEurekaServer

                        public class EurekaApplication {

                          public static void main(String[] args) {

                            SpringApplication.run(EurekaApplication.class, args);

                          }

                        }

                   其中@EnableEurekaServer,啟動(dòng)一個(gè)服務(wù)注冊(cè)中心提供給其他應(yīng)用進(jìn)行對(duì)話


               c、application.properties的配置項(xiàng)

                   # 默認(rèn)的端口 server.port=8761 

                    eureka.client.register-with-eureka=false 

                    eureka.client.fetch-registry=false 

                    eureka.client.serviceUrl.defaultZone=http://localhost:${server.port}/eureka/


              d、啟動(dòng)springboot,并訪問(wèn)http://localhost:8761/


3、上面只是單機(jī)模式環(huán)境,商用環(huán)境往往是要高可用(HA)的環(huán)境,這個(gè)時(shí)候就要考慮集群,一個(gè)節(jié)點(diǎn)掛了,還有另外一個(gè)節(jié)點(diǎn),集群我們只要改下配置文件就可以了

eureka.client.serviceUrl.defaultZone=http://localhost:8762/eureka/;http://localhost:8763/eureka/;如果ip不同,配置三個(gè)節(jié)點(diǎn),則需要三臺(tái)機(jī)器


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

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

AI