一、Eureka 基础知识
1.1 服务治理
SpringCloud 封装了 Netflix 公司开发的 Eureka 模块来实现服务治理。
在传统的 RPC 远程调用框架中,管理每个服务与服务之间的依赖关系比较复杂,管理也比较复杂,所以需要使用服务治理,管理服务与服务之间的依赖关系,可以实现服务调用、负载均衡、容错等,实现服务的注册与发现。
1.2 服务注册与发现
Eureka 采用是CS的设计架构,Eureka Server 作为服务注册功能的服务器,它是服务注册中心。而系统中的其他微服务,使用 Eureka 的客户端连接到 Eureka Server 并维持心跳连接。这样系统的维护人员就可以通过 Eureka Server 来监控系统中各个微服务的运行是否正常。
在服务注册与发现中,有一个注册中心,当服务器启动的时候,会把当前自己的服务器的信息,比如:服务地址、通讯地址等以别名的方式注册到注册中心上,另一方(消费者、服务的提供者),以该别名的方式去注册中心获取到实际的服务通讯地址,然后再实现本地的 RPC 远程调用 RPC ,框架核心设计思想在于注册中心,因为使用注册中心管理每个服务与服务之间的一个依赖关系(服务治理概念),在任何 RPC 远程框架中,都会有一个注册中心,用于存放服务地址相关信心,比如:接口地址等。
1.3 Eureka 两个组件
Eureka 包含两个组件:Eureka Server 和 Eureka Client
Eureka Server 提供服务注册服务
各个微服务节点通过配置启动后,会在 Eureka Server 中进行注册,这样 Eureka Server 中的服务注册表中将会存储所有可用服务节点的信息,服务节点的信息可用在界面中直观的看到。
Eureka Client 通过注册中心进行访问
Eureka Client 是一个Java客户端,用户简化与 Eureka Server 的交互,客户端同时也具备一个内置的、使用轮询(round-robin)负载算法的负载均衡器。在应用启动后,将会向 Eureka Server 发送心跳(默认周期为30秒)。如果Eureka Server 在多个心跳周期内没有接收到某个节点的心跳,Eureka Server 将会从服务注册表中把这个服务节点移除(默认90秒)。
二、构建 Eureka Server 子模块(cloud-eureka-server7001)
2.1 新建子模块 cloud-eureka-server7001
步骤和之前新建订单、支付子模块一致
2.2 修改 cloud-eureka-server7001 的pom.xml,新增相关包依赖
<dependencies>
<!-- eureka 服务端-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependencies>
2.3 新建 cloud-eureka-server7001的配置文件 application.yml 文件
server:
port: 7001
eureka:
instance:
hostname: localhost #eureka 服务端实例名称
client:
register-with-eureka: false #false 表示不向服务中心注册自己
fetch-registry: false #false 表示自己就是注册中心,职责就是维护服务实例,并不需要去检索服务
service-url:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/ #设置与Eureka Server 交互的地址查询服务和注册服务都需要依赖这个地址
2.4 新建 cloud-eureka-server7001的主启动类 EurekaServerMain7001.java
package com.atguigu.springcloud;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
/**
* @auther He
* @date 2022-05-05 22:08
*/
@SpringBootApplication
@EnableEurekaServer
public class EurekaServerMain7001 {
public static void main(String[] args) {
SpringApplication.run(EurekaServerMain7001.class, args);
}
}
主启动类中的 @EnableEurekaServer 注解标明当前为 Eureka Server
创建好后的子模块结构图:
2.5 启动新建的 cloud-eureka-server7001 模块
启动后,通过浏览器访问 http://localhost:7001 进入 Eureka的 可视化界面
出现上图所示页面,标明当前 Eureka Server 配置启动成功。
三、将已有的订单和支付 两个子模块作为 Eureka Client 注册进 Eureka Server 中
3.1 修改支付模块(cloud-provider-payment8001)
3.1.1 在原有的 pom.xml 中引入 Eureka Client
<!-- Eureka 客户端-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
3.1.2 修改原有的 application.yml,增加 Eureka Client 相关配置
eureka:
client:
register-with-eureka: true #表示将自己注册进 EurekaServer 中,默认为 true
fetch-registry: true #是否从 EurekaServer 中抓取已有的注册信息,默认为 true。单节点无所谓,集群必须设置为true才能配合 ribbon 使用负载均衡
service-url:
defaultZone: http://localhost:7001/eureka
3.1.3 修改主启动类,增加 @EnableEurekaClent 注解,标明当前是 Eureka 客户端
3.1.4 上述步骤完成后,重启当前的支付模块 cloud-provider-payment8001
3.1.5 重启完成后,刷新刚刚的 Eureka Server 可视化界面 http://localhost:7001/
从上图可以看到,经过上述修改,微服务子模块- 支付模块已经成功注册进当前的 Eureka Server 模块中了,服务注册名为 CLOUD-PAYMENT-SERVICE ,这个微服务注册名来自我们对当前微服务 支付模块中的 application.yml 中的 spring:application:name 中配置的名称的大写,如下图:
3.2 修改订单模块(cloud-consumer-order80)
订单模块中的修改与上述 3.1 支付模块修改类似,都是先在当前项目的 pom.xml 中引入 Eureka Client jar 包,然后在修改 application.yml 和主启动类,完成后,重启即可。
3.2.1 修改 pom.xml,增加引入 Eureka Client
<!-- Eureka 客户端-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
3.2.2 修改 application.yml 增加 项目访问名和 Eureka Client 相关配置
server:
port: 80
spring:
application:
name: cloud-order-service
eureka:
client:
register-with-eureka: true #表示将自己注册进 EurekaServer 中
fetch-registry: true #是否从 EurekaServer 抓取已有的注册信息,默认为true。单节点无所谓,集群必须设置为 true,才能配合 ribbon 使用负载均衡
service-url:
defaultZone: http://localhost:7001/eureka
3.2.3 主启动类中增加 @EnableEurekaClient 注解
3.2.4 上述修改完成后,重启 订单模块,并刷新 Eureka Server 可视化界面
刷新 Eureka Server 界面后,即可看到刚刚注册进来的 订单模块
四、通过 Eureka Server 来访问
修改订单模块,达到通过 Eureka Server 来访问支付模块的目标。
4.1 修改订单模块(cloud-consumer-order80)中 OrderController 中的支付模块访问地址
public static final String PAYMENT_URL = "http://CLOUD-PAYMENT-SERVICE";
其中 CLOUD-PAYMENT-SERVICE 为 支付模块在 Eureka Server 中注册的别名,在 支付模块中的 application.yml 文件中设置
4.2 修改订单模块中的 ApplicationContextConfig.java 配置类,增加 @LoadBalanced 注解
package com.atguigu.springcloud.config;
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.context.annotation.Bean;
import org.springframework.stereotype.Component;
import org.springframework.web.client.RestTemplate;
/**
* @auther He
* @date 2022-04-26 22:19
*/
@Component
public class ApplicationContextConfig {
@Bean
@LoadBalanced
public RestTemplate getRestTemplate() {
return new RestTemplate();
}
}
4.3 重启支付子模块,进行访问测试
如果能成功访问,即设置成功