Eureka服务注册与发现

什么是Eureka?

Eureka

  Eureka 是 Netflix 的一个子模块也是核心模块之一。Eureka 是一个基于 REST 的服务,用于定位服务,以实现云端中间层服务发现和故障转移,服务注册与发现对于微服务来说是非常重要的,有了服务发现与注册,只需要使用服务的标识符,就可以访问到服务,而不需要修改服务调用的配置文件了,功能类似于 Dubbo 的注册中心,比如 zookeeper;

原理讲解:
        springcloud 封装了Netflix公司开发的eureka模块来实现服务注册和发现(对比zookeeper)

  Eureka 采用了 C-S 架构设计,EurekaServer

Eureka 的客户端连接到 EurekaServer 并维持心跳连接。这样系统的维护人员就可以通过 EurekaServer 来监控系统中各个微服务是够正常运行 SpringCloud 的一些其他模块(比如zuul)就可以通过 EurekaServer 来发现系统中的其他微服务,并执行相关的逻辑;

和Dubbo架构对比

Eureka包含两个组件:EurekaServer  和  EurekaClient

 EurekaServer 提供服务注册服务,各个节点启动后,会在 EurekaServer 中进行注册,这样EurekaServer 中的服务注册表中将会存储所有可用服务节点的信息,服务节点的信息可以在界面中直观的看到

  EurekaClient是一个java客户端,用于简化 EurekaServer 的交互,客户端同时也具备一个内置的,使用轮询负载算法的负载军很气。在应用启动后,会将 EurekaServer 发送心跳(默认周期为30秒)。如果 EurekaServer 在多个心跳周期内没有接收到某个节点的心跳, EurekaServer

三大角色:
        EurekaServer:提供服务的注册于发现

 Service Provider:将自身服务注册到 Eureka 中,从而使消费能够找到

 Service consumer:服务消费方从 Eureka 中获取注册服务列表,从而找到消费服务

好了简单了解之后,我们来构建一个 Eureka 注册中心

        在pom.xml中导入相关依赖:

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-eureka-server</artifactId>
    <version>1.4.6.RELEASE</version>
</dependency>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
</dependency>

        配置一下application.yaml

server:
  port: 7001

#Eureka
eureka:
  instance:
    hostname: localhost #Eureka服务端的实例名称
  client:
    register-with-eureka: false #表示是否向Eureka注册中心注册自己
    fetch-registry: false #表示如果为false,则表示自己为注册中心
    service-url: #他是与eureka的交互页面,说白了就是监控页面
      defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/

这里defaultZone修改了默认端口

        配置主启动类EurekaServer_7001.java:

package com.hkl.springcloud;

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

@SpringBootApplication
@EnableEurekaServer //@EnableEurekaServer 服务端的启动类,可以接收别人注册进来
public class EurekaServer_7001 {
    public static void main(String[] args) {
        SpringApplication.run(EurekaServer_7001.class,args);
    }
}

        访问http://localhost:7001/ 成功进入注册中心,如下:

eureka不同注册中心的数据同步_注册中心