Eureka服务注册与发现
5.1 什么是Eureka
Netflix在涉及Eureka时,遵循的就是API原则.
Eureka是Netflix的一个子模块,也是核心模块之一。Eureka是基于REST的服务,用于定位服务,以实现云端中间件层服务发现和故障转移,服务注册与发现对于微服务来说是非常重要的,有了服务注册与发现,只需要使用服务的标识符,就可以访问到服务,而不需要修改服务调用的配置文件了,功能类似于Dubbo的注册中心,比如Zookeeper.
5.2 原理理解
Eureka基本的架构
Springcloud 封装了Netflix公司开发的Eureka模块来实现服务注册与发现 (对比Zookeeper).
Eureka采用了C-S的架构设计,EurekaServer作为服务注册功能的服务器,他是服务注册中心.
而系统中的其他微服务,使用Eureka的客户端连接到EurekaServer并维持心跳连接。这样系统的维护人员就可以通过EurekaServer来监控系统中各个微服务是否正常运行,Springcloud 的一些其他模块 (比如Zuul) 就可以通过EurekaServer来发现系统中的其他微服务,并执行相关的逻辑.
Eureka 包含两个组件:Eureka Server 和 Eureka Client.
Eureka Server 提供服务注册,各个节点启动后,回在EurekaServer中进行注册,这样Eureka Server中的服务注册表中将会储存所有课用服务节点的信息,服务节点的信息可以在界面中直观的看到.
Eureka Client 是一个Java客户端,用于简化EurekaServer的交互,客户端同时也具备一个内置的,使用轮询负载算法的负载均衡器。在应用启动后,将会向EurekaServer发送心跳 (默认周期为30秒) 。如果Eureka Server在多个心跳周期内没有接收到某个节点的心跳,EurekaServer将会从服务注册表中把这个服务节点移除掉 (默认周期为90s).
三大角色
Eureka Server:提供服务的注册与发现 Service Provider:服务生产方,将自身服务注册到Eureka中,从而使服务消费方能狗找到 Service Consumer:服务消费方,从Eureka中获取注册服务列表,从而找到消费服务
5.3 构建步骤
导入依赖
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>com.xuuyan</artifactId>
<groupId>org.example</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>springcloud-eureka-7001</artifactId>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-eureka-server -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka-server</artifactId>
<version>1.4.6.RELEASE</version>
</dependency>
</dependencies>
</project>
编写yml配置文件
server:
port: 7001
#Eureka配置
eureka:
instance:
hostname: localhost #Eureka服务端的实例名称
client:
register-with-eureka: false #表示是否向 Eureka注册中心注册自己
fetch-registry: false #fetch-registry如果为false ,则表示自己为注册中心
service-url: #她是表示 监控页面~
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
编写主启动类
小技巧:如果每次都写启动类嫌麻烦的话,建议可以自定义快捷键,比如我这里直接输入mainboot可自动生成main方法全部内容
@SpringBootApplication
@EnableEurekaServer
public class Eureka7001 {
public static void main(String[] args) {
SpringApplication.run(Eureka7001.class, args);
}
}
生产者入驻服务注册
生产者导入依赖 在8001端口 加依赖
<!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-eureka -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
<version>1.4.6.RELEASE</version>
</dependency>
配置yml
#Eureka 的配置 服务注册到哪里
eureka:
client:
service-url:
defaultZone: http://localhost:7001/eureka/
# instance:
# instance-id: springcloud-provider-dept-8001 改变id
主启动类开启EurekaClient服务
@EnableEurekaClient
插曲:
完善安全监控机制
EureKa自我保护机制:好死不如赖活着
一句话总结就是:某时刻某一个微服务不可用,eureka不会立即清理,依旧会对该微服务的信息进行保存!
默认情况下,当eureka server在一定时间内没有收到实例的心跳,便会把该实例从注册表中删除(默认是90秒),但是,如果短时间内丢失大量的实例心跳,便会触发eureka server的自我保护机制,比如在开发测试时,需要频繁地重启微服务实例,但是我们很少会把eureka server一起重启(因为在开发过程中不会修改eureka注册中心),当一分钟内收到的心跳数大量减少时,会触发该保护机制。可以在eureka管理界面看到Renews threshold和Renews(last min),当后者(最后一分钟收到的心跳数)小于前者(心跳阈值)的时候,触发保护机制,会出现红色的警告:**EMERGENCY!EUREKA MAY BE INCORRECTLY CLAIMING INSTANCES ARE UP WHEN THEY’RE NOT.RENEWALS ARE LESSER THAN THRESHOLD AND HENCE THE INSTANCES ARE NOT BEGING EXPIRED JUST TO BE SAFE.**从警告中可以看到,eureka认为虽然收不到实例的心跳,但它认为实例还是健康的,eureka会保护这些实例,不会把它们从注册表中删掉。
该保护机制的目的是避免网络连接故障,在发生网络故障时,微服务和注册中心之间无法正常通信,但服务本身是健康的,不应该注销该服务,如果eureka因网络故障而把微服务误删了,那即使网络恢复了,该微服务也不会重新注册到eureka server了,因为只有在微服务启动的时候才会发起注册请求,后面只会发送心跳和服务列表请求,这样的话,该实例虽然是运行着,但永远不会被其它服务所感知。所以,eureka server在短时间内丢失过多的客户端心跳时,会进入自我保护模式,该模式下,eureka会保护注册表中的信息,不在注销任何微服务,当网络故障恢复后,eureka会自动退出保护模式。自我保护模式可以让集群更加健壮。
但是我们在开发测试阶段,需要频繁地重启发布,如果触发了保护机制,则旧的服务实例没有被删除,这时请求有可能跑到旧的实例中,而该实例已经关闭了,这就导致请求错误,影响开发测试。所以,在开发测试阶段,我们可以把自我保护模式关闭,只需在eureka server配置文件中加上如下配置即可:eureka.server.enable-self-preservation=false
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
info:
app.name: xuyuan-springcloud
company.name: blog.xuyuan.studay.com
谁写的微服务:
写一个controller获取他人的微服务信息了解他人信息 “团队合作用”
controller:
//注册进来的微服务~获取一些消息~
@GetMapping("/dept/discovery")
public Object discovery(){
//获取微服务列表清单
List<String> services = client.getServices();
System.out.println("discovery=>services:"+services);
//得到一个具体的微服务,通过具体的一个微服务的id,applicationName;
List<ServiceInstance> instances = client.getInstances("SPRINGCLOUD-02PROVIDER-DEPT");
for (ServiceInstance instance : instances) {
System.out.println(
instance.getHost()+"\t"+
instance.getPort()+"\t"+
instance.getUri()+"\t"+
instance.getServiceId()
);
}
return this.client;
}
启动类加注解
@EnableDiscoveryClient//服务发现
集群:环境配置
创建两个eureka工程
一模一样的只改变端口号
7001:yaml
server:
port: 7001
#Eureka配置
eureka:
instance:
hostname: localhost #Eureka服务端的实例名称
client:
register-with-eureka: false #表示是否向 Eureka注册中心注册自己
fetch-registry: false #fetch-registry如果为false ,则表示自己为注册中心
service-url: #她是表示 监控页面~
#单机: http://${eureka.instance.hostname}:${server.port}/eureka/
defaultZone: http://localhost:7002/eureka/,http://localhost:7003/eureka/
7002:yaml
server:
port: 7002
#Eureka配置
eureka:
instance:
hostname: localhost #Eureka服务端的实例名称
client:
register-with-eureka: false #表示是否向 Eureka注册中心注册自己
fetch-registry: false #fetch-registry如果为false ,则表示自己为注册中心
service-url: #她是表示 监控页面~
defaultZone: http://localhost:7001/eureka/,http://localhost:7003/eureka/
7003:yaml
server:
port: 7003
#Eureka配置
eureka:
instance:
hostname: localhost #Eureka服务端的实例名称
client:
register-with-eureka: false #表示是否向 Eureka注册中心注册自己
fetch-registry: false #fetch-registry如果为false ,则表示自己为注册中心
service-url: #她是表示 监控页面~
defaultZone: http://localhost:7001/eureka/,http://localhost:7002/eureka/
通过 defaultZone:挂载三个不同的端口号 一个端口崩了可以用其他两个
8001:yaml
server:
port: 8001
#mybatis配置
mybatis:
type-aliases-package: com.xuyuan.springcloud.pojo
config-location: classpath:mybatisa/mybatis-config.xml
mapper-locations: classpath:mybatisa/mapper/*.xml
#spring的配置
spring:
application:
name: springcloud-02provider-dept
datasource:
username: root
password: 123
url: jdbc:mysql://localhost:3306/db01?serverTimezone=GMT%2B8&characterEncoding=utf-8&useUnicode=true
driver-class-name: com.mysql.jdbc.Driver
type: com.alibaba.druid.pool.DruidDataSource
#Eureka 的配置 服务注册到哪里
eureka:
client:
service-url:
defaultZone: http://localhost:7001/eureka/, http://localhost:7002/eureka/, http://localhost:7001/eureka/
# instance:
# instance-id: springcloud-provider-dept-8001 改变id
#info 配置一些谁写的微服务
info:
app.name: xuyuan-springcloud
company.name: blog.xuyuan.studay.com
8001启动类
package com.xuyuan.springcloud;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
//启动类
@SpringBootApplication
@EnableEurekaClient //在服务启动后自动注册到euerka中!!
@EnableDiscoveryClient//服务发现
public class DeptProvider_8001 {
public static void main(String[] args) {
SpringApplication.run(DeptProvider_8001.class,args);
}
}
一个电脑开太卡了 运行内存需要8G以上最好16G
可以部署到其他的电脑上
创建子模块——消费者
依赖pom.xml
<dependencies>
<!-- spring-cloud-starter-ribbon -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<dependency>
<groupId>com.ryan</groupId>
<artifactId>cloud-common-api</artifactId>
<version>1.0-SNAPSHOT</version>
</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>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
</plugins>
</build>
yml配置文件
server:
port: 8005
eureka:
client:
register-with-eureka: false
service-url:
defaultZone: http:/localhost:7001/eureka/,localhost:7002/eureka/localhost:7003/eureka/
# 这里直接演示集群的配置
**编写主启动类**
@SpringBootApplication
@EnableEurekaClient
public class Dept8005 {
public static void main(String[] args) {
SpringApplication.run(Dept8005.class, args);
}
}
调用服务
注意:消费者的端口一般是80,我这里用8005 因为我的80端口被占用 消费者一般不会去涉及业务逻辑代码,直接编写一个controller去服务注册中心调用服务即可
生产者和消费者分别是两个不同的微服务,他们之间去通信呢?这里就需要用到RestTemplate了
RestTemplate配置
@Configuration
public class RestTemplateConfig {
@Bean
@LoadBalanced
public RestTemplate getRestTemplate(){
return new RestTemplate();
}
}
controller
@RestController
public class DeptController {
@Autowired
private RestTemplate restTemplate;
//集群版,如果是集群的话,访问之前,一定要开启负载均衡,否则会报异常
public static final String PRE_FIX_URL = "http://SPRINGCLOUD-02PROVIDER-DEPT";
@GetMapping("/consumer/get/all")
public List<Dept> getAll(){
return restTemplate.getForObject(PRE_FIX_URL + "/provider/get/all", List.class);
}
@GetMapping("/consumer/get/id/{id}")
public Dept getDeptById(@PathVariable("id")int id){
return restTemplate.getForObject(PRE_FIX_URL + "/provider/get/id/" + id, Dept.class);
}
@PostMapping("/consumer/add")
public Integer addDept(Dept dept){
return restTemplate.postForObject(PRE_FIX_URL + "/provider/add", dept, Integer.class);
}
}
这样就完成了消费者调用生产者服务的操作,说白了还是下面几个步骤:
导入依赖
配置yml
编写主启动类,并开启服务
编写业务逻辑代码