這個(gè)是公司之前使用現(xiàn)在有空了來(lái)整理一下最基本的demo以便記住使用刽射。
這里是server的搭建
第一步:首先就是老樣子導(dǎo)入包
...
<properties>
...
<spring-cloud.version>Hoxton.RELEASE</spring-cloud.version>
</properties>
...
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<!--server服務(wù)的artifactId是spring-cloud-starter-eureka-server-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
...
<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>
這是必要的,其他的請(qǐng)自行添加。
第二步: application.yml的配置
spring:
application:
name: eureka-server
# profiles:
# active: pro
server:
#集群下端口號(hào)是不用更改的
port: 8761
eureka:
instance:
#這里是作為服務(wù)名
hostname: eureka1
#client:
# service-url:
# defaultZone: http://eureka1:8761/eureka/
client:
#這里register-with-eureka和fetch-registry默認(rèn)為true,單機(jī)啟動(dòng)register-with-eureka=true會(huì)報(bào)錯(cuò).建議自己嘗試一下还最。
register-with-eureka: true
fetch-registry: true
service-url:
#這個(gè)是默認(rèn)尋找的地址如果本機(jī)是eureka1那么就要指向eureka2服務(wù),一次類推,如果有多個(gè)的話格式是defaultZone: url1,url2,url3。
defaultZone: http://eureka2:8761/eureka/
這里需要說(shuō)一下網(wǎng)上有很多誤導(dǎo)人的用default-zone的,你們會(huì)發(fā)現(xiàn)新版(舊版沒(méi)試)這樣設(shè)置是無(wú)效的埃撵。我的話debug了一下發(fā)現(xiàn),它啟動(dòng)時(shí)默認(rèn)的是先尋找的key為defaultZone的配置而不是default-zone雇寇。(配置的導(dǎo)入是用Map key:value形式的,自己可以去看下源碼)
第三步:?jiǎn)?dòng)類上添加@EnableEurekaServer
...
@EnableEurekaServer
public class EurakaDemoApplication {
public static void main(String[] args) {
SpringApplication.run(EurakaDemoApplication.class,args);
}
}
第四步:設(shè)置hosts
這里需要sudo vim /etc/hosts 文件來(lái)添加ip映射
這里是兩臺(tái)或多臺(tái)機(jī)器分別設(shè)置哦
服務(wù)器1(eureka1)
ip地址 eureka1
服務(wù)器2(eureka2)
ip地址 eureka2
服務(wù)器n(eurekaN)
ip地址 eurekaN
兩個(gè)服務(wù)啟動(dòng)后成功的話是這樣的
Server布置完畢就可以布置provider和cosumer的發(fā)現(xiàn)啦,這里有兩個(gè)不同的地方
第一個(gè)就是導(dǎo)入的包是client.
...
<!--server服務(wù)的artifactId是spring-cloud-starter-eureka-client-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
...
第二的話就是yml的defaultZone不一樣氢拥,client客戶端需要向所有euraka-server進(jìn)行注冊(cè)蚌铜。
application.yml
eureka:
client:
service-url:
defaultZone:
http://eureka1:8761/eureka/,http://eureka2:8761/eureka/,http://eurekaN:8761/eureka/
如果注冊(cè)成功的話你就可以在eureka1或eurekaN上為8761的web可視化界面看到。