作用

当注册中心扛不住高并发时,就需要集群了

新建Module

新建两个Module,一个名称为:microservice-eureka-server-2002,另一个名称为:microservice-eureka-server-2003

继承依赖

在新建的两个Module的pom.xml中添加:

1
2
3
4
5
6
<!--继承microservice依赖版本-->
<parent>
<groupId>org.example</groupId>
<artifactId>microservice</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>

添加依赖

在新建的两个Module的pom.xml中添加:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!--Eureka服务-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka-server</artifactId>
</dependency>
<!-- 修改后立即生效,热部署 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>springloaded</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>

添加启动类

在新建的两个Module都添加启动类,名称分别为:EurekaServerApplication_2002和EurekaServerApplication_2003,可以直接复制EurekaServerApplication_2001.java的内容然后修改名称即可

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ledao;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

/**
* Eureka服务启动类
*
* @author LeDao
* @company
* @create 2021-08-11 16:29
*/
@SpringBootApplication
@EnableEurekaServer
public class EurekaApplication_2001 {

public static void main(String[] args) {
SpringApplication.run(EurekaApplication_2001.class, args);
}
}

配置本机host

前面单机的时候 eureka注册中心实例名称 是localhost,现在是集群,不能三个实例都是localhost,这里复杂的办法是搞三个虚拟机,比较麻烦,这里有简单办法,直接配置本机hosts,来实现本机域名映射;

找到 C:\Windows\System32\drivers\etc 打开hosts,加配置:

1
2
3
127.0.0.1  eureka2001.ledao.com
127.0.0.1 eureka2002.ledao.com
127.0.0.1 eureka2003.ledao.com

修改application.yml

修改三个项目的application.yml文件,主要是修改 hostname和defaultZone

microservice-eureka-server-2001的application.yml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
server:
port: 2001
context-path: /

eureka:
instance:
# hostname: localhost #eureka注册中心实例名称 单机
hostname: eureka2001.ledao.com # 集群
client:
register-with-eureka: false #false 由于该应用为注册中心,所以设置为false,代表不向注册中心注册自己。
fetch-registry: false #false 由于注册中心的职责就是维护服务实例,它并不需要去检索服务,所以也设置为false
service-url:
defaultZone: http://eureka2002.ledao.com:2002/eureka/,http://eureka2003.ledao.com:2003/eureka/ # 集群
#单机defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/ #设置与Eureka注册中心交互的地址,查询服务和注册服务用到

microservice-eureka-server-2002的application.yml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
server:
port: 2002
context-path: /

eureka:
instance:
# hostname: localhost #eureka注册中心实例名称 单机
hostname: eureka2002.ledao.com # 集群
client:
register-with-eureka: false #false 由于该应用为注册中心,所以设置为false,代表不向注册中心注册自己。
fetch-registry: false #false 由于注册中心的职责就是维护服务实例,它并不需要去检索服务,所以也设置为false
service-url:
defaultZone: http://eureka2001.ledao.com:2001/eureka/,http://eureka2003.ledao.com:2003/eureka/ # 集群
#单机defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/ #设置与Eureka注册中心交互的地址,查询服务和注册服务用到

microservice-eureka-server-2003的application.yml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
server:
port: 2003
context-path: /

eureka:
instance:
# hostname: localhost #eureka注册中心实例名称 单机
hostname: eureka2003.ledao.com # 集群
client:
register-with-eureka: false #false 由于该应用为注册中心,所以设置为false,代表不向注册中心注册自己。
fetch-registry: false #false 由于注册中心的职责就是维护服务实例,它并不需要去检索服务,所以也设置为false
service-url:
defaultZone: http://eureka2002.ledao.com:2002/eureka/,http://eureka2003.ledao.com:2003/eureka/ # 集群
#单机defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/ #设置与Eureka注册中心交互的地址,查询服务和注册服务用到

服务提供者项目microservice-student-provider-1001的application.yml,主要修改eureka.client.service-url.defaultZone

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
server:
port: 1001
context-path: /

# 数据源配置
spring:
datasource:
type: com.alibaba.druid.pool.DruidDataSource
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/db_springcloud?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
username: root
password: 123456
jpa:
hibernate:
ddl-auto: update
show-sql: true

eureka:
instance:
hostname: localhost #eureka客户端主机实例名称
appname: microservice-student #客户端服务名
instance-id: microservice-student:1001 #客户端实例名称
prefer-ip-address: true #显示IP
client:
service-url:
# defaultZone: http://localhost:2001/eureka #把服务注册到eureka注册中心 #单机
defaultZone: http://eureka2001.ledao.com:2001/eureka/,http://eureka2002.ledao.com:2002/eureka/,http://eureka2003.ledao.com:2003/eureka/ # 集群
info:
current.groupId: @project.groupId@
current.artifactId: @project.artifactId@
current.version: @project.version@
parent.artifactId: @project.parent.artifactId@
负责人: 张三
联系电话: 110

测试

运行microservice-eureka-server-2001、microservice-eureka-server-2002、microservice-eureka-server-2003和microservice-student-provider-1001四个项目后开始测试

下面三个链接都可以测试

http://eureka2001.ledao.com:2001/

http://eureka2002.ledao.com:2002/

http://eureka2003.ledao.com:2003/

结果