Spring Cloud Eureka服务治理

Spring Cloud Eureka是Spring Cloud Netflix 微服务套件中的一部分,它基于Netflix Eureka做了二次封装,主要负责完成微服务架构中的服务治理功能。Spring Cloud 通过为Eureka增加了Spring Boot风格的自动化配置,我们只需通过引入依赖和注解配置就能让Spring Boot构建的微服务应用轻松的与Eureka服务治理体系进行整合。
 

服务治理:

  服务治理可以说是微服务架构中最为核心和基础的模块,主要用来实现各个微服务实例的自动化注册与发现。
使用服务治理的原因:在服务引用并不算多的时候,可以通过静态配置来完成服务的调用,但随着业务的发展,系统功能越来越复杂,相应的微服务也不断增加,此时静态配置会变得越来越难以维护。并且面对不断发展的业务,集群规模,服务的位置、服务的命名等都有可能发生变化,如果还是通过手工维护的方式,极易发生错误或是命名冲突等问题。同时,也将消耗大量的人力来维护静态配置的内容。为了解决微服务架构中的服务实例维护问题,就产生了大量的服务治理框架和产品。这些框架和产品的实现都围绕着服务注册与服务发现机制来完成对微服务应用实例的自动化管理。
 

服务注册:

  在服务治理框架中,通常都会构建一个注册中心,每个服务单元向注册中心登记自己提供的服务,将主机与端口号、版本号、通信协议等一些附加信息告知注册中心,注册中心按服务名分类组织服务清单。比如:有两个提供服务A的进程分别运行于192.168.0.100:8000 和192.168.0.101:8000 位置上,还有三个提供服务B的进程分别运行于192.168.0.100:9000、192.168.0.101:9000、192.168.0.102:9000位置上。当这些进程都启动,并向注册中心注册自己的服务之后,注册中心就会维护类似下面的一个服务清单。另外,注册中心还需要以心跳的方式去监测清单中的服务是否可用,若不可用需要从服务清单中剔除,达到排除故障服务的效果。

服务发现:

  在服务治理框架的运作下,服务间的调用不再通过指定具体的实例地址来实现,而是通过向服务名发起请求调用实现。所以,服务调用方在调用服务提供方接口时,并不知道具体的服务实例位置。因此,调用方需要向注册中心咨询服务,并获取所有服务的实例清单,以实现对具体服务实例的访问。比如:以上述服务为例,有服务C希望调用服务A,服务C就向注册中心发起咨询请求,服务注册中心就会将服务A的位置清单返回给服务C,当服务C要发起调用时,便从该清单中以某种轮询策略取出一个位置来进行服务调用(客户端负载均衡)。
 

Netflix Eureka

  Spring cloud Eureka ,使用 Netflix Eureka 来实现服务注册与发现,它即包含了服务端组件,也包含了客户端组件,并且服务端和客户端均采用Java编写,所以 Eureka 主要适用于通过 Java实现的分布式系统,或是与JVM兼容语言构建的系统。但是,Eureka服务端的服务治理机制提供了完备的RESTful API,所以也支持将非 Java语言构建的微服务应用纳入Eureka 的服务治理体系中来。只是在使用其他语言平台时,需要自己来实现Eureka的客户端程序。
  Eureka服务端:也称为服务注册中心。它和其他服务注册中心一样,支持高可用配置。
  Eureka客户端:主要处理服务的注册与发现。客户端服务通过注解和参数配置的方式,嵌入在客户端应用程序的代码中,在应用程序运行时,Eureka客户端向注册中心注册自身提供的服务并周期性的发送心跳来更新它的服务租约。同时也能从服务端查询当前注册的服务信息并把它们缓存到本地并周期性的刷新服务状态。
 

搭建服务注册中心

  首先,创建spring boot 工程,命名为eureka-server,并在pom.xml 中引入必要的依赖内容(也可以通过spring initializer 快速构建项目):
  
复制代码
<?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">
    <modelVersion>4.0.0</modelVersion>
&lt;groupId&gt;com.example&lt;/groupId&gt;
&lt;artifactId&gt;eureka-server&lt;/artifactId&gt;
&lt;version&gt;0.0.1-SNAPSHOT&lt;/version&gt;
&lt;packaging&gt;jar&lt;/packaging&gt;

&lt;name&gt;eureka-server&lt;/name&gt;
&lt;description&gt;Demo project <span style="color:rgb(0,0,255);line-height:1.5;">for</span> Spring Boot&lt;/description&gt;

&lt;parent&gt;
    &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
    &lt;artifactId&gt;spring-boot-starter-parent&lt;/artifactId&gt;
    &lt;version&gt;1.5.6.RELEASE&lt;/version&gt;
    &lt;relativePath/&gt; &lt;!-- lookup parent from repository --&gt;
&lt;/parent&gt;

&lt;properties&gt;
    &lt;project.build.sourceEncoding&gt;UTF-8&lt;/project.build.sourceEncoding&gt;
    &lt;project.reporting.outputEncoding&gt;UTF-8&lt;/project.reporting.outputEncoding&gt;
    &lt;java.version&gt;1.8&lt;/java.version&gt;
    &lt;spring-cloud.version&gt;Dalston.SR2&lt;/spring-cloud.version&gt;
&lt;/properties&gt;

&lt;dependencies&gt;
    &lt;dependency&gt;
        &lt;groupId&gt;org.springframework.cloud&lt;/groupId&gt;
        &lt;artifactId&gt;spring-cloud-starter-eureka-server&lt;/artifactId&gt;
    &lt;/dependency&gt;

    &lt;dependency&gt;
        &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
        &lt;artifactId&gt;spring-boot-starter-test&lt;/artifactId&gt;
        &lt;scope&gt;test&lt;/scope&gt;
    &lt;/dependency&gt;
&lt;/dependencies&gt;

&lt;dependencyManagement&gt;
    &lt;dependencies&gt;
        &lt;dependency&gt;
            &lt;groupId&gt;org.springframework.cloud&lt;/groupId&gt;
            &lt;artifactId&gt;spring-cloud-dependencies&lt;/artifactId&gt;
            &lt;version&gt;${spring-cloud.version}&lt;/version&gt;
            &lt;type&gt;pom&lt;/type&gt;
            &lt;scope&gt;<span style="color:rgb(0,0,255);line-height:1.5;">import</span>&lt;/scope&gt;
        &lt;/dependency&gt;
    &lt;/dependencies&gt;
&lt;/dependencyManagement&gt;

&lt;build&gt;
    &lt;plugins&gt;
        &lt;plugin&gt;
            &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
            &lt;artifactId&gt;spring-boot-maven-plugin&lt;/artifactId&gt;
        &lt;/plugin&gt;
    &lt;/plugins&gt;
&lt;/build&gt;

</project>

复制代码

  

  通过@EnableEurekaServer 注解启动一个服务注册中心提供给其他应用进行对话

复制代码
package com.example.demo;

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

@EnableEurekaServer
@SpringBootApplication
public class EurekaServerApplication {

</span><span style="color:rgb(0,0,255);line-height:1.5;">public</span> <span style="color:rgb(0,0,255);line-height:1.5;">static</span> <span style="color:rgb(0,0,255);line-height:1.5;">void</span><span style="line-height:1.5;"> main(String[] args) {
    SpringApplication.run(EurekaServerApplication.</span><span style="color:rgb(0,0,255);line-height:1.5;">class</span><span style="line-height:1.5;">, args);
}

}

复制代码

  

  在默认配置下,该服务注册中心也会将自己作为客户端来尝试注册它自己,所以需要禁用它的客户端注册行为,在application.properties文件中增加如下配置:
复制代码
server.port=8082

eureka.instance.hostname=localhost

向注册中心注册服务

eureka.client.register-with-eureka=false

检索服务

eureka.client.fetch-registry=false
eureka.client.service-url.defaultZone=http:// e u r e k a . i n s t a n c e . h o s t n a m e : {eureka.instance.hostname}: eureka.instance.hostname:{server.port}/eureka/

复制代码

  

  完成配置后,启动应用并访问 http://localhost:8082/。可以看到以下Eureka信息面板,其中Instances currently registered with Eureka 栏是空的,表示该注册中心还没有注册任何服务。
 

 

  

注册服务提供者

  完成服务注册中心的搭建后,就可以添加一个既有的spring boot应用到Eureka的服务治理体系中去。
  新建项目名为eureka-client的spring boot应用,将其作为一个微服务应用向服务注册中心发布自己。首先在pom.xml中增加spring cloud eureka 模块的依赖。
复制代码
<?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”>
<modelVersion>4.0.0</modelVersion>
&lt;groupId&gt;com.example&lt;/groupId&gt;
&lt;artifactId&gt;eureka-client&lt;/artifactId&gt;
&lt;version&gt;0.0.1-SNAPSHOT&lt;/version&gt;
&lt;packaging&gt;jar&lt;/packaging&gt;

&lt;name&gt;eureka-client&lt;/name&gt;
&lt;description&gt;Demo project <span style="color:rgb(0,0,255);line-height:1.5;">for</span> Spring Boot&lt;/description&gt;

&lt;parent&gt;
    &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
    &lt;artifactId&gt;spring-boot-starter-parent&lt;/artifactId&gt;
    &lt;version&gt;1.5.6.RELEASE&lt;/version&gt;
    &lt;relativePath/&gt; &lt;!-- lookup parent from repository --&gt;
&lt;/parent&gt;
&lt;properties&gt;
    &lt;project.build.sourceEncoding&gt;UTF-8&lt;/project.build.sourceEncoding&gt;
    &lt;project.reporting.outputEncoding&gt;UTF-8&lt;/project.reporting.outputEncoding&gt;
    &lt;java.version&gt;1.8&lt;/java.version&gt;
    &lt;spring-cloud.version&gt;Dalston.SR2&lt;/spring-cloud.version&gt;
&lt;/properties&gt;
&lt;dependencies&gt;
    &lt;dependency&gt;
        &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
        &lt;artifactId&gt;spring-boot-starter-web&lt;/artifactId&gt;
    &lt;/dependency&gt;

    &lt;dependency&gt;
        &lt;groupId&gt;org.springframework.cloud&lt;/groupId&gt;
        &lt;artifactId&gt;spring-cloud-starter-eureka&lt;/artifactId&gt;
    &lt;/dependency&gt;

    &lt;dependency&gt;
        &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
        &lt;artifactId&gt;spring-boot-starter-test&lt;/artifactId&gt;
        &lt;scope&gt;test&lt;/scope&gt;
    &lt;/dependency&gt;
&lt;/dependencies&gt;
&lt;dependencyManagement&gt;
    &lt;dependencies&gt;
        &lt;dependency&gt;
            &lt;groupId&gt;org.springframework.cloud&lt;/groupId&gt;
            &lt;artifactId&gt;spring-cloud-dependencies&lt;/artifactId&gt;
            &lt;version&gt;${spring-cloud.version}&lt;/version&gt;
            &lt;type&gt;pom&lt;/type&gt;
            &lt;scope&gt;<span style="color:rgb(0,0,255);line-height:1.5;">import</span>&lt;/scope&gt;
        &lt;/dependency&gt;
    &lt;/dependencies&gt;
&lt;/dependencyManagement&gt;
&lt;build&gt;
    &lt;plugins&gt;
        &lt;plugin&gt;
            &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
            &lt;artifactId&gt;spring-boot-maven-plugin&lt;/artifactId&gt;
        &lt;/plugin&gt;
    &lt;/plugins&gt;
&lt;/build&gt;

</project>

复制代码

  

  接着,新建RESTful API,通过注入DiscoveryClient对象,在日志中打印出服务的相关内容。

复制代码
package com.example.demo.web;

import org.apache.log4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cloud.client.ServiceInstance;
import org.springframework.cloud.client.discovery.DiscoveryClient;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**

  • @author lxx
  • @version V1.0.0
  • @date 2017-8-9
    */

@RestController
public class HelloController {

</span><span style="color:rgb(0,0,255);line-height:1.5;">private</span> <span style="color:rgb(0,0,255);line-height:1.5;">final</span> Logger logger =<span style="line-height:1.5;"> Logger.getLogger(getClass());

@Autowired
</span><span style="color:rgb(0,0,255);line-height:1.5;">private</span><span style="line-height:1.5;"> DiscoveryClient client;

@RequestMapping(value </span>= "/index"<span style="line-height:1.5;">)
</span><span style="color:rgb(0,0,255);line-height:1.5;">public</span><span style="line-height:1.5;"> String index(){
    ServiceInstance instance </span>=<span style="line-height:1.5;"> client.getLocalServiceInstance();
    logger.info(</span>"/hello:host:"+instance.getHost()+" port:"+<span style="line-height:1.5;">instance.getPort()
            </span>+" service_id:"+<span style="line-height:1.5;">instance.getServiceId());
    </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span> "hello world!"<span style="line-height:1.5;">;
}

}

复制代码

 

  然后在主类中添加 @EnableDiacoveryClient 注解,激活Eureka 中的DiscoveryClient 实现(自动化配置,创建DiscoveryClient接口针对Eureka客户端的EurekaDiscoveryClient实例),才能实现上述对服务信息的输出。
复制代码
package com.example.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;

@EnableDiscoveryClient
@SpringBootApplication
public class EurekaClientApplication {

</span><span style="color:rgb(0,0,255);line-height:1.5;">public</span> <span style="color:rgb(0,0,255);line-height:1.5;">static</span> <span style="color:rgb(0,0,255);line-height:1.5;">void</span><span style="line-height:1.5;"> main(String[] args) {
    SpringApplication.run(EurekaClientApplication.</span><span style="color:rgb(0,0,255);line-height:1.5;">class</span><span style="line-height:1.5;">, args);
}

}

复制代码

  

  最后修改application.properties文件,通过spring.application.name属性为服务命名,再通过eureka.client.service-url.defaultZone 属性来指定服务注册中心的地址,地址和注册中心设置的地址一致:

server.port=2222
spring.application.name=hello-service

eureka.client.service-url.defaultZone=http://localhost:8082/eureka/

  

  下面分别启动服务注册中心以及服务提供方,在hello-service服务控制台中,DiscoveryClient对象打印了该服务的注册信息:
2017-08-09 17:17:27.635  INFO 8716 — [           main] c.example.demo.EurekaClientApplication   : Started EurekaClientApplication in 9.844 seconds (JVM running for 10.772)
2017-08-09 17:17:27.797 INFO 8716 — [nfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_HELLO-SERVICE/chanpin-PC:hello-service:2222 - registration status: 204

  

  在注册中心控制台可以看到hello-service的注册信息:
2017-08-09 17:17:27.786  INFO 10396 — [nio-8082-exec-1] c.n.e.registry.AbstractInstanceRegistry  : Registered instance HELLO-SERVICE/chanpin-PC:hello-service:2222 with status UP (replication=false)
2017-08-09 17:17:47.792 INFO 10396 — [a-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry : Running the evict task with compensationTime 0ms

  

  此处的输出内容为HelloController中注入的DiscoveryClient接口对象,从服务注册中心获取的服务相关信息。
 

高可用注册中心

  在微服务架构这样的分布式环境中,需要充分考虑发生故障的情况,所以在生产环境中必须对各个组件进行高可用部署,对于微服务如此,对于服务注册中心也一样。
  Eureka Server 的设计一开始就考虑了高可用问题,在Eureka的服务治理中,所有节点既是服务提供方,也是服务消费方,服务注册中心也一样。
  Eureka Server 的高可用实际上就是将自己作为服务向其他服务注册中心注册自己,这样就可以形成一组互相注册的服务注册中心,以实现服务清单的相互同步,达到高可用的效果。下面尝试搭建一个高可用服务注册中心的集群。在之前的服务注册中心的基础上进行扩展,构建一个双节点的服务注册中心集群。
  • 创建 application-peer1.properties,作为peer1 服务中心的配置,并将serviceUrl指向peer2:
spring.application.name=eureka-server
server.port=1111

eureka.instance.hostname=peer1
eureka.client.service-url.defaultZone=http://peer2:1112/eureka/

  

  • 创建 application-peer2.properties,作为peer2 服务中心的配置,并将serviceUrl指向peer1:
spring.application.name=eureka-server
server.port=1112

eureka.instance.hostname=peer2
eureka.client.service-url.defaultZone=http://peer1:1111/eureka/

  

  • 在C:\Windows\System32\drivers\etc\hosts 文件中添加对peer1 和 peer2 中的转换,让上面配置的host形式的serviceURL能在本地正确访问到;
    127.0.0.1 peer1
    127.0.0.1 peer2

     

  • 通过spring.profiles.active 属性来分别启动peer1 和 peer2(打开两个terminal进行启动,在一个terminal中先启动的peer1 会报错,但不影响,是因为它所注册的服务peer2 还未启动,在另外个terminal中把peer2 启动即可,不用启动主类) :
java -jar eureka-server-0.0.1-SNAPSHOT.jar --spring.profiles.active=peer1
java -jar eureka-server-0.0.1-SNAPSHOT.jar --spring.profiles.active=peer2

  

  此时访问peer1的注册中心  http://localhost:1111/ 可以看到,registered-replicas 中已经有 peer2 节点的eureka-server了。同样的访问peer2 的注册中心  http://localhost:1112/ 也可以看到registered-replicas 中有 peer1 节点, 并且这些节点在可用分片(available-replicase)之中。当关闭了peer1 节点后,刷新peer2 注册中心,可以看到 peer1 的节点变成了不可用分片(unavailable-replicas)。

 

 

  • 在设置了多节点的服务注册中心之后,服务提供方还需要做一些简单的配置才能将服务注册到Eureka Server 集群中。以hello-service为例,修改配置文件如下:
server.port=2222
spring.application.name=hello-service

eureka.client.service-url.defaultZone=http://peer1:1111/eureka/,http://peer2:1112/eureka/

  

  主要是将eureka.client.service-url.defaultZone 的注册中心指向之前搭建的peer1 和 peer2。
  下面启动该服务,通过访问  http://localhost:1112/ 或者  http://localhost:1111/ 可以看到 hello-service 服务同时被注册到了peer1 和 peer2 上。

 

  若此时断开 peer1 ,由于 hello-service 同时也向peer2 上注册了,因此在peer2 上的其他服务依然能访问到hello-service,从而实现了服务注册中心的高可用。
 

 

   如果不想使用主机名来定义注册中心的地址,也可以使用IP地址的形式,但是需要在配置文件中增加配置参数 eureka.instance.prefer-ip-address=true,该值默认为false。

 

服务发现与消费

  通过上面的内容介绍与实践,已经搭建起微服务架构中的核心组件——服务注册中心(包括单节点模式和高可用模式)。同时,还通过简单的配置,将hello-service服务注册到Eureka注册中心上,成为该服务治理体系下的一个服务。现在已经有了服务注册中心和服务提供者,下面就构建一个服务消费者,它主要完成两个目标,发现服务和消费服务。其中,服务发现的任务由Eureka客户端完成,而服务消费的任务由Ribbon完成。Ribbon是一个基于HTTP和TCP的客户端负载均衡器,它可以在通过客户端中配置的ribbonServerList服务端列表去轮询访问以达到均衡负载的作用。当Ribbon与Eureka联合使用时,Ribbon的服务实例清单RibbonServerList会被DiscoveryEnabledNIWSServerList重写,扩展成从Eureka注册中心获取服务端列表。同时也会用NIWSDiscoveryPing来取代IPing,它将职责委托给Eureka来确定服务端是否已经启动。
  • 准备工作:启动之前实现的服务注册中心eureka-server以及hello-service服务,为了实验Ribbon的客户端负载均衡功能,我们通过java -jar 命令行的方式来启动两个端口不同的hello-service,具体如下:
  • 修改配置文件:
server.port=2222
spring.application.name=hello-service

eureka.client.service-url.defaultZone=http://localhost:8082/eureka/

  • 再将hello-service应用打包:mvn clean package
  • 通过下列命令启动应用程序:
java -jar eureka-client-0.0.1-SNAPSHOT.jar --server.port=8011
java -jar eureka-client-0.0.1-SNAPSHOT.jar --server.port=8012
  • 成功启动两个服务后,可以在注册中心看到名为HELLO-SERVICE的服务中出现两个实例单元:

 

  • 创建一个Spring boot项目来实现服务消费者,取名为ribbon-consumer,并在pom.xml中引入如下的依赖内容。
复制代码
<?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”>
<modelVersion>4.0.0</modelVersion>
&lt;groupId&gt;com.example&lt;/groupId&gt;
&lt;artifactId&gt;demo&lt;/artifactId&gt;
&lt;version&gt;0.0.1-SNAPSHOT&lt;/version&gt;
&lt;packaging&gt;jar&lt;/packaging&gt;

&lt;name&gt;demo&lt;/name&gt;
&lt;description&gt;Demo project <span style="color:rgb(0,0,255);line-height:1.5;">for</span> Spring Boot&lt;/description&gt;

&lt;parent&gt;
    &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
    &lt;artifactId&gt;spring-boot-starter-parent&lt;/artifactId&gt;
    &lt;version&gt;1.5.6.RELEASE&lt;/version&gt;
    &lt;relativePath/&gt; &lt;!-- lookup parent from repository --&gt;
&lt;/parent&gt;

&lt;properties&gt;
    &lt;project.build.sourceEncoding&gt;UTF-8&lt;/project.build.sourceEncoding&gt;
    &lt;project.reporting.outputEncoding&gt;UTF-8&lt;/project.reporting.outputEncoding&gt;
    &lt;java.version&gt;1.8&lt;/java.version&gt;
    &lt;spring-cloud.version&gt;Dalston.SR2&lt;/spring-cloud.version&gt;
&lt;/properties&gt;

&lt;dependencies&gt;
    &lt;dependency&gt;
        &lt;groupId&gt;org.springframework.cloud&lt;/groupId&gt;
        &lt;artifactId&gt;spring-cloud-starter-eureka&lt;/artifactId&gt;
    &lt;/dependency&gt;
    &lt;dependency&gt;
        &lt;groupId&gt;org.springframework.cloud&lt;/groupId&gt;
        &lt;artifactId&gt;spring-cloud-starter-ribbon&lt;/artifactId&gt;
    &lt;/dependency&gt;
    &lt;dependency&gt;
        &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
        &lt;artifactId&gt;spring-boot-starter-web&lt;/artifactId&gt;
    &lt;/dependency&gt;

    &lt;dependency&gt;
        &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
        &lt;artifactId&gt;spring-boot-starter-test&lt;/artifactId&gt;
        &lt;scope&gt;test&lt;/scope&gt;
    &lt;/dependency&gt;
&lt;/dependencies&gt;

&lt;dependencyManagement&gt;
    &lt;dependencies&gt;
        &lt;dependency&gt;
            &lt;groupId&gt;org.springframework.cloud&lt;/groupId&gt;
            &lt;artifactId&gt;spring-cloud-dependencies&lt;/artifactId&gt;
            &lt;version&gt;${spring-cloud.version}&lt;/version&gt;
            &lt;type&gt;pom&lt;/type&gt;
            &lt;scope&gt;<span style="color:rgb(0,0,255);line-height:1.5;">import</span>&lt;/scope&gt;
        &lt;/dependency&gt;
    &lt;/dependencies&gt;
&lt;/dependencyManagement&gt;

&lt;build&gt;
    &lt;plugins&gt;
        &lt;plugin&gt;
            &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
            &lt;artifactId&gt;spring-boot-maven-plugin&lt;/artifactId&gt;
        &lt;/plugin&gt;
    &lt;/plugins&gt;
&lt;/build&gt;

</project>

复制代码
  • 在主类中通过@EnableDiscoveryClient注解让该应用注册为Eureka客户端应用,以获取服务发现的能力,同时,在该主类中创建RestTemplate的Spring Bean实例,并通过@LoadBalanced 注解开启客户端负载均衡。
复制代码
package com.example.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.context.annotation.Bean;
import org.springframework.web.client.RestTemplate;

@EnableDiscoveryClient
@SpringBootApplication
public class DemoApplication {

@Bean
@LoadBalanced
RestTemplate restTemplate(){
    </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span> <span style="color:rgb(0,0,255);line-height:1.5;">new</span><span style="line-height:1.5;"> RestTemplate();
}

</span><span style="color:rgb(0,0,255);line-height:1.5;">public</span> <span style="color:rgb(0,0,255);line-height:1.5;">static</span> <span style="color:rgb(0,0,255);line-height:1.5;">void</span><span style="line-height:1.5;"> main(String[] args) {
    SpringApplication.run(DemoApplication.</span><span style="color:rgb(0,0,255);line-height:1.5;">class</span><span style="line-height:1.5;">, args);
}

}

复制代码

 

  • 创建ConsumerController类并实现/ribbon-consumer接口。在该接口中,通过上面创建的RestTemplate 来实现对HELLO-SERVICE 服务提供的 /hello 接口进行调用。此处的访问地址是服务名 HELLO-SERVICE ,而不是一个具体的地址,在服务治理框架中,这是一个重要特性。
复制代码
package com.example.demo.web;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;

/**

  • @author lxx
  • @version V1.0.0
  • @date 2017-8-9
    */

@RestController
public class ConsumerController {

@Autowired
RestTemplate restTemplate;

@RequestMapping(value </span>= "ribbon-consumer", method =<span style="line-height:1.5;"> RequestMethod.GET)
</span><span style="color:rgb(0,0,255);line-height:1.5;">public</span><span style="line-height:1.5;"> String helloConsumer(){
    </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span> restTemplate.getForEntity("http://HELLO-SERVICE/index"<span style="line-height:1.5;">,
            String.</span><span style="color:rgb(0,0,255);line-height:1.5;">class</span><span style="line-height:1.5;">).getBody();
}

}

复制代码
  • 在application.properties中配置Eureka服务注册中心的位置,需要与之前的HELLO-SERVICE一样,同时设置该消费者的端口为3333,不与之前启动的应用端口冲突即可。
server.port=3333
spring.application.name=ribbon-consumer

eureka.client.service-url.defaultZone=http://localhost:8082/eureka/

  

  • 启动ribbon-consumer应用后,可以在Eureka信息面板中看到,除了HELLO-SERVICE外,还多了实现的RIBBON-CONSUMER服务。

 

  • 通过向 http://localhost:3333/ribbon-consumer 发起访问, 成功返回字符串 “hello world”。在消费者控制台中打印出服务列表情况。
  • 多发送几次请求,可以在服务提供方hello-service的控制台中看到一些打印信息,可以看出两个控制台基本是交替访问,实现了客户端的负载均衡。
 

Eureka详解

基础架构(核心三要素)

  • 服务注册中心:Eureka提供的服务端,提供服务注册与发现的功能,即之前的eureka-server。
  • 服务提供者:提供服务的应用,可以是spring boot应用,也可以是其他技术平台且遵循Eureka通信机制的应用。它将自己提供的服务注册到Eureka,以供其他应用发现。即之前的HELLO-SERVICE.
  • 服务消费者:消费者从服务注册中心获取服务列表,从而使消费者可以知道去何处调用其所需要的服务,在上一节中使用了Ribbon来实现服务消费,后续还会介绍使用Feign的消费方式
 

服务治理机制

  体验了Spring cloud Eureka 通过简单的注解配置就能实现强大的服务治理功能之后,进一步了解一下Eureka基础架构中各个元素的一些通信行为,以此来理解基于Eureka实现的服务治理体系是如何运作起来的。以上图为例,其中有几个重要元素:

  • “服务注册中心-1” 和 “服务注册中心-2”,他们互相注册组成高可用集群。
  • “服务提供者” 启动了两个实例,一个注册到“服务注册中心-1” 上,另外一个注册到 “服务注册中心-2” 上。
  • 还有两个 “服务消费者” ,它们也都分别指向了一个注册中心。

  根据上面的结构,可以详细了解从服务注册开始到服务调用,及各个元素所涉及的一些重要通信行为。

服务提供者

  服务注册

  “服务提供者” 在启动的时候会通过发送REST请求的方式将自己注册到Eureka Server 上,同时带上了自身服务的一些元数据信息。Eureka Server 接收到这个REST请求后,将元数据信息存储在一个双层结构Map中,其中第一层的key是服务名,第二层的key 是具体服务的实例名。

  在服务注册时,需要确认eureka.client.register-with-eureka=true参数是否正确,若为false,将不会启动注册操作。

  服务同步

  如图所示,这里的两个服务提供者分别注册到了两个不同的服务注册中心上,即它们的信息分别被两个服务注册中心维护。由于服务注册中心之间为互相注册,当服务提供者发送注册请求到一个服务注册中心时,它会将请求转发给集群中相连的其他注册中心,从而实现注册中心之间的服务同步。通过服务同步,两个服务提供者的服务信息就可以通过这两个服务注册中心中的任意一台获取到。

  服务续约

  在注册完服务之后,服务提供者会维护一个心跳用来持续告诉 Eureka Server :“我还活着”,以防止 Eureka Server 的 “剔除任务” 将该服务实例从服务列表中排除出去,我们称该操作为服务续约。

 

服务消费者

  获取服务

  到这里,在服务注册中心已经注册了一个服务,并且该服务有两个实例。当我们启动服务消费者时,它会发送一个REST请求给服务注册中心,来获取上面注册的服务清单。为了性能考虑,Eureka Server 会维护一份只读的服务清单来返回给客户端,同时该缓存清单会每隔30秒更新一次。

  获取服务是服务消费者的基础,所以要确保 eureka-client-fetch-registery=true 参数没有被修改成false,该值默认为 true。若想修改缓存清单的更新时间,可以通过 eureka-client.registry-fetch-interval-seconds=30 参数来进行修改,该值默认为30,单位为秒。

  服务调用

  服务消费者在获取服务清单后,通过服务名可以获得具体提供服务的实例名和该实例的元数据信息。因为有这些服务实例的详细信息,所以客户端可以根据自己的需要决定具体需要调用的实例,在Ribbon中会默认采用轮询的方式进行调用,从而实现客户端的负载均衡。

  服务下线

  在系统运行过程中必然会面临关闭或重启服务的某个实例的情况,在服务关闭期间,我们自然不希望客户端会继续调用关闭了的实例。所以在客户端程序中,当服务实例进行正常的关闭操作时,它会触发一个服务下线的REST请求给 Eureka Server,告诉服务注册中心:“我要下线了”。服务端在接收到请求之后,将该服务状态设置为下线(DOWN),并把该下线事件传播出去。

 

服务注册中心

  失效剔除

  当一些外部原因如内存溢出、网络故障等导致服务实例非正常下线,而服务注册中心并未收到“服务下线”的请求。为了从服务列表中将这些无法提供服务的实例剔除,Eureka Server 在启动的时候会创建一个定时任务,默认每隔一段时间(默认60秒)将当前清单中超时(默认90秒)没有续约的服务剔除出去。

  自我保护

  当我们在本地调试基于 Eureka 的程序时,基本上都会在服务注册中心的信息面板上出现类似下面的红色警告信息:

  实际上,该警告就是触发了Eureka Server的自我保护机制。之前介绍过,服务注册到Eureka Server之后,会维护一个心跳连接,告诉Eureka Server 自己还活着。Eureka Server 在运行期间,会统计心跳失败的比例在15分钟之内低于85%,如果出现低于的情况,Eureka Server 会将当前的实例信息保护起来,让这些实例不会过期,尽可能保护这些注册信息。但是,在保护期间内实例若出现问题,那么客户端很容易拿到实际已经不存在的服务实例,会出现调用失败的情况,所以客户端必须要有容错机制,比如可以使用请求重试、断路器等机制。

  由于在本地调试很容易触发注册中心的保护机制,使得注册中心维护的服务实例不那么准确。可以在本地进行开发时,使用 eureka-server.enable-self-preservation=false 参数来关闭保护机制,确保注册中心将不可用的实例正确剔除。

  

源码分析

  上面,我们对Eureka中各个核心元素的通信行为做了详细的介绍,为了更深入的理解它的运作和配置,下面我们结合源码来分别看看各个通信行为是如何实现的。

  在看具体源码之前,先回顾一下之前所实现的内容,从而找到一个合适的切入口去分析。首先,对于服务注册中心、服务提供者、服务消费者这三个主要元素来说,后两者(Eureka客户端)在整个运行机制中是大部分通信行为的主动发动着,而注册中心主要是处理请求的接受者。所以,我们从Eureka客户端作为入口看看它是如何完成这些主动通信行为的。

  我们将一个普通的spring boot 应用注册到Eureka Server 或是从 Eureka Server 中获取服务列表时,主要就做了两件事:

  • 在应用类中配置了 @EnableDiscoveryClient 注解。
  • 在application.properties 中用 eureka-client.service-url.defaultZone 参数指定了注册中心的位置。

  顺着上面的线索,我们看看 @EnableDiscoveryClient 的源码,具体如下:

复制代码
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//

package org.springframework.cloud.client.discovery;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.springframework.cloud.client.discovery.EnableDiscoveryClientImportSelector;
import org.springframework.context.annotation.Import;

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@Import({EnableDiscoveryClientImportSelector.class})
public @interface EnableDiscoveryClient {
boolean autoRegister() default true;
}

复制代码

  从该注解的注释中我们可以知道,它主要用来开启 DiscoveryClient 的实例。通过搜索 DiscoveryClient ,我们可以发现有一个类和一个接口。通过梳理可以得到如下图所示的关系:

  其中,1 是 Spring Cloud 的接口,它定义了用来发现服务的常用抽象方法,通过该接口可以有效的屏蔽服务治理的实现细节,所以使用 Spring Cloud 构建的微服务应用可以方便的切换不同服务治理框架,而不改动程序代码,只需要另外添加一些针对服务治理框架的配置即可。2 是对 1 接口的实现,从命名判断。它实现的是对 Eureka 发现服务的封装。所以 EurekaDiscoveryClient 依赖了 Netflix Eureka 的 EurekaClient 接口,EurekaClient 接口继承了 LookupService 接口,它们都是 Netflix 开源包中的内容,主要定义了针对 Eureka 的发现服务的抽象发放,而真正实现发现服务的则Netflix包中的 DiscoveryClient (5)类。

  接下来,我们就详细看看DiscoveryClient类。先看下该类的头部注释,大致内容如下:

  在具体研究Eureka Client 负责完成的任务之前,我们先看看在哪里对Eureka Server 的URL列表进行配置。根据配置的属性名 eureka.client.service-url.defaultZone,通过 ServiceURL 可以找到该属性相关的加载属性,但是在SR5 版本中它们都被 @Deprecated 标注为不再建议使用,并 @link 到了替代类 EndpointUtils,所以可以在该类中找到下面这个函数:

复制代码
public static Map<String, List<String>> getServiceUrlsMapFromConfig(EurekaClientConfig clientConfig, String instanceZone, boolean preferSameZone) {
LinkedHashMap orderedUrls = new LinkedHashMap();
String region = getRegion(clientConfig);
String[] availZones = clientConfig.getAvailabilityZones(clientConfig.getRegion());
if(availZones == null || availZones.length == 0) {
availZones = new String[]{“default”};
}
    logger.debug(</span>"The availability zone for the given region {} are {}"<span style="line-height:1.5;">, region, Arrays.toString(availZones));
    </span><span style="color:rgb(0,0,255);line-height:1.5;">int</span> myZoneOffset =<span style="line-height:1.5;"> getZoneOffset(instanceZone, preferSameZone, availZones);
    String zone </span>=<span style="line-height:1.5;"> availZones[myZoneOffset];
    List serviceUrls </span>=<span style="line-height:1.5;"> clientConfig.getEurekaServerServiceUrls(zone);
    </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(serviceUrls != <span style="color:rgb(0,0,255);line-height:1.5;">null</span><span style="line-height:1.5;">) {
        orderedUrls.put(zone, serviceUrls);
    }

    </span><span style="color:rgb(0,0,255);line-height:1.5;">int</span> currentOffset = myZoneOffset == availZones.length - 1?0:myZoneOffset + 1<span style="line-height:1.5;">;

    </span><span style="color:rgb(0,0,255);line-height:1.5;">while</span>(currentOffset !=<span style="line-height:1.5;"> myZoneOffset) {
        zone </span>=<span style="line-height:1.5;"> availZones[currentOffset];
        serviceUrls </span>=<span style="line-height:1.5;"> clientConfig.getEurekaServerServiceUrls(zone);
        </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(serviceUrls != <span style="color:rgb(0,0,255);line-height:1.5;">null</span><span style="line-height:1.5;">) {
            orderedUrls.put(zone, serviceUrls);
        }

        </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(currentOffset == availZones.length - 1<span style="line-height:1.5;">) {
            currentOffset </span>= 0<span style="line-height:1.5;">;
        } </span><span style="color:rgb(0,0,255);line-height:1.5;">else</span><span style="line-height:1.5;"> {
            </span>++<span style="line-height:1.5;">currentOffset;
        }
    }

    </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(orderedUrls.size() &lt; 1<span style="line-height:1.5;">) {
        </span><span style="color:rgb(0,0,255);line-height:1.5;">throw</span> <span style="color:rgb(0,0,255);line-height:1.5;">new</span> IllegalArgumentException("DiscoveryClient: invalid serviceUrl specified!"<span style="line-height:1.5;">);
    } </span><span style="color:rgb(0,0,255);line-height:1.5;">else</span><span style="line-height:1.5;"> {
        </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span><span style="line-height:1.5;"> orderedUrls;
    }
}</span></pre><div class="cnblogs_code_toolbar" style="margin-top:5px;"><span class="cnblogs_code_copy" style="padding-right:5px;line-height:1.5;"><a title="复制代码" style="color:rgb(7,93,179);text-decoration:underline;border:none;"><img src="https://i-blog.csdnimg.cn/blog_migrate/48304ba5e6f9fe08f3fa1abda7d326ab.gif" alt="复制代码" style="max-width:900px;border:none;"></a></span></div></div><p style="margin:10px auto;">  </p><h4 style="font-size:14px;margin-top:10px;margin-bottom:10px;">  Region、Zone</h4><p style="margin:10px auto;">  从上面的函数中可以发现,客户端依次加载了两个内容,第一个是Region,第二个是Zone,从其加载逻辑上可以判断它们之间的关系:</p><ul style="margin-left:30px;"><li>通过 getRegion 函数,我们可以看到他从配置中读取了一个Region返回,所以一个微服务应用只可以属于一个Region,如果不特别配置,默认为default。若要自己配置,可以通过 eureka.client.region属性来定义。</li></ul><div class="cnblogs_code" style="background-color:rgb(245,245,245);border:1px solid rgb(204,204,204);padding:5px;margin:5px 0px;font-family:'Courier New';font-size:12px;"><div class="cnblogs_code_toolbar" style="margin-top:5px;"><span class="cnblogs_code_copy" style="padding-right:5px;line-height:1.5;"><a title="复制代码" style="color:rgb(7,93,179);text-decoration:underline;border:none;"><img src="https://i-blog.csdnimg.cn/blog_migrate/48304ba5e6f9fe08f3fa1abda7d326ab.gif" alt="复制代码" style="max-width:900px;border:none;"></a></span></div><pre style="margin-bottom:0px;white-space:pre-wrap;font-family:'Courier New';"> <span style="color:rgb(0,0,255);line-height:1.5;">public</span> <span style="color:rgb(0,0,255);line-height:1.5;">static</span><span style="line-height:1.5;"> String getRegion(EurekaClientConfig clientConfig) {
    String region </span>=<span style="line-height:1.5;"> clientConfig.getRegion();
    </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(region == <span style="color:rgb(0,0,255);line-height:1.5;">null</span><span style="line-height:1.5;">) {
        region </span>= "default"<span style="line-height:1.5;">;
    }

    region </span>=<span style="line-height:1.5;"> region.trim().toLowerCase();
    </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span><span style="line-height:1.5;"> region;
}</span></pre><div class="cnblogs_code_toolbar" style="margin-top:5px;"><span class="cnblogs_code_copy" style="padding-right:5px;line-height:1.5;"><a title="复制代码" style="color:rgb(7,93,179);text-decoration:underline;border:none;"><img src="https://i-blog.csdnimg.cn/blog_migrate/48304ba5e6f9fe08f3fa1abda7d326ab.gif" alt="复制代码" style="max-width:900px;border:none;"></a></span></div></div><ul style="margin-left:30px;"><li>通过 getAvailabilityZones 函数,可以知道当我们没有特别为 Region 配置 Zone 的时候,默认采用defaultZone , 这才是我们之前配置参数 eureka.client.service-url.defaultZone 的由来。若要为应用指定Zone,可以通过eureka.client.availability-zones 属性来设置。从该函数的 return 内容,可以知道 Zone 能够设置多个,并且通过逗号分隔来配置。由此,我们可以判断Region与Zone 是一对多的关系。</li></ul><div class="cnblogs_code" style="background-color:rgb(245,245,245);border:1px solid rgb(204,204,204);padding:5px;margin:5px 0px;font-family:'Courier New';font-size:12px;"><div class="cnblogs_code_toolbar" style="margin-top:5px;"><span class="cnblogs_code_copy" style="padding-right:5px;line-height:1.5;"><a title="复制代码" style="color:rgb(7,93,179);text-decoration:underline;border:none;"><img src="https://i-blog.csdnimg.cn/blog_migrate/48304ba5e6f9fe08f3fa1abda7d326ab.gif" alt="复制代码" style="max-width:900px;border:none;"></a></span></div><pre style="margin-bottom:0px;white-space:pre-wrap;font-family:'Courier New';"> <span style="color:rgb(0,0,255);line-height:1.5;">public</span><span style="line-height:1.5;"> String[] getAvailabilityZones(String region) {
    String value </span>= (String)<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.availabilityZones.get(region);
    </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(value == <span style="color:rgb(0,0,255);line-height:1.5;">null</span><span style="line-height:1.5;">) {
        value </span>= "defaultZone"<span style="line-height:1.5;">;
    }

    </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span> value.split(","<span style="line-height:1.5;">);
}</span></pre><div class="cnblogs_code_toolbar" style="margin-top:5px;"><span class="cnblogs_code_copy" style="padding-right:5px;line-height:1.5;"><a title="复制代码" style="color:rgb(7,93,179);text-decoration:underline;border:none;"><img src="https://i-blog.csdnimg.cn/blog_migrate/48304ba5e6f9fe08f3fa1abda7d326ab.gif" alt="复制代码" style="max-width:900px;border:none;"></a></span></div></div><h4 style="font-size:14px;margin-top:10px;margin-bottom:10px;">  serviceUrls</h4><p style="margin:10px auto;">  在获取了Region 和 Zone 的信息之后,才开始真正加载 Eureka Server 的具体地址。它根据传入的参数按一定算法确定加载位于哪一个Zone配置的serviceUrls。</p><div class="cnblogs_code" style="background-color:rgb(245,245,245);border:1px solid rgb(204,204,204);padding:5px;margin:5px 0px;font-family:'Courier New';font-size:12px;"><pre style="margin-bottom:0px;white-space:pre-wrap;font-family:'Courier New';"><span style="color:rgb(0,0,255);line-height:1.5;">int</span> myZoneOffset =<span style="line-height:1.5;"> getZoneOffset(instanceZone, preferSameZone, availZones);

String zone = availZones[myZoneOffset];
List serviceUrls = clientConfig.getEurekaServerServiceUrls(zone);

  具体获取serviceUrls 的实现,可以详细查看getEurekaServerServiceUrls 函数的具体实现类 EurekaClientConfigBean,用来加载配置文件中的内容,通过搜索defaultZone,我们可以很容易找到下面这个函数,它具体实现了如何解析该参数的过程,通过此内容,我们可以知道,eureka.client.service-url.defaultZone 属性可以配置多个,并且需要通过逗号分隔。

复制代码
public List<String> getEurekaServerServiceUrls(String myZone) {
String serviceUrls = (String)this.serviceUrl.get(myZone);
if(serviceUrls == null || serviceUrls.isEmpty()) {
serviceUrls = (String)this.serviceUrl.get(“defaultZone”);
}
    </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(!<span style="line-height:1.5;">StringUtils.isEmpty(serviceUrls)) {
        String[] serviceUrlsSplit </span>=<span style="line-height:1.5;"> StringUtils.commaDelimitedListToStringArray(serviceUrls);
        ArrayList eurekaServiceUrls </span>= <span style="color:rgb(0,0,255);line-height:1.5;">new</span><span style="line-height:1.5;"> ArrayList(serviceUrlsSplit.length);
        String[] var5 </span>=<span style="line-height:1.5;"> serviceUrlsSplit;
        </span><span style="color:rgb(0,0,255);line-height:1.5;">int</span> var6 =<span style="line-height:1.5;"> serviceUrlsSplit.length;

        </span><span style="color:rgb(0,0,255);line-height:1.5;">for</span>(<span style="color:rgb(0,0,255);line-height:1.5;">int</span> var7 = 0; var7 &lt; var6; ++<span style="line-height:1.5;">var7) {
            String eurekaServiceUrl </span>=<span style="line-height:1.5;"> var5[var7];
            </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(!<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.endsWithSlash(eurekaServiceUrl)) {
                eurekaServiceUrl </span>= eurekaServiceUrl + "/"<span style="line-height:1.5;">;
            }

            eurekaServiceUrls.add(eurekaServiceUrl);
        }

        </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span><span style="line-height:1.5;"> eurekaServiceUrls;
    } </span><span style="color:rgb(0,0,255);line-height:1.5;">else</span><span style="line-height:1.5;"> {
        </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span> <span style="color:rgb(0,0,255);line-height:1.5;">new</span><span style="line-height:1.5;"> ArrayList();
    }
}</span></pre><div class="cnblogs_code_toolbar" style="margin-top:5px;"><span class="cnblogs_code_copy" style="padding-right:5px;line-height:1.5;"><a title="复制代码" style="color:rgb(7,93,179);text-decoration:underline;border:none;"><img src="https://i-blog.csdnimg.cn/blog_migrate/48304ba5e6f9fe08f3fa1abda7d326ab.gif" alt="复制代码" style="max-width:900px;border:none;"></a></span></div></div><p style="margin:10px auto;">  当我们在微服务应用中使用Ribbon来实现服务调用时,对于Zone的设置可以在负载均衡时实现区域亲和特性:Ribbon的默认策略会优先访问同客户端处于一个Zone中的服务端实例,只有当同一个Zone 中没有可用服务端实例的时候才会访问其他Zone中的实例。所以通过Zone属性的定义,配合实际部署的物理结构,我们就可以有效地设计出对区域性故障的容错集群。</p><h4 style="font-size:14px;margin-top:10px;margin-bottom:10px;">&nbsp;  服务注册</h4><p style="margin:10px auto;">  在理解了多个服务注册中心信息的加载后,我们再回头看看DiscoveryClient类是如何实现“服务注册”行为的,通过查看它的构造类,可以找到调用了下面这个函数:</p><div class="cnblogs_code" style="background-color:rgb(245,245,245);border:1px solid rgb(204,204,204);padding:5px;margin:5px 0px;font-family:'Courier New';font-size:12px;"><div class="cnblogs_code_toolbar" style="margin-top:5px;"><span class="cnblogs_code_copy" style="padding-right:5px;line-height:1.5;"><a title="复制代码" style="color:rgb(7,93,179);text-decoration:underline;border:none;"><img src="https://i-blog.csdnimg.cn/blog_migrate/48304ba5e6f9fe08f3fa1abda7d326ab.gif" alt="复制代码" style="max-width:900px;border:none;"></a></span></div><pre style="margin-bottom:0px;white-space:pre-wrap;font-family:'Courier New';"><span style="color:rgb(0,0,255);line-height:1.5;">private</span> <span style="color:rgb(0,0,255);line-height:1.5;">void</span><span style="line-height:1.5;"> initScheduledTasks() {
    </span><span style="color:rgb(0,0,255);line-height:1.5;">int</span><span style="line-height:1.5;"> renewalIntervalInSecs;
    </span><span style="color:rgb(0,0,255);line-height:1.5;">int</span><span style="line-height:1.5;"> expBackOffBound;
    </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.clientConfig.shouldFetchRegistry()) {
        renewalIntervalInSecs </span>= <span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.clientConfig.getRegistryFetchIntervalSeconds();
        expBackOffBound </span>= <span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.clientConfig.getCacheRefreshExecutorExponentialBackOffBound();
        </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span>.scheduler.schedule(<span style="color:rgb(0,0,255);line-height:1.5;">new</span> TimedSupervisorTask("cacheRefresh", <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.scheduler, <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.cacheRefreshExecutor, renewalIntervalInSecs, TimeUnit.SECONDS, expBackOffBound, <span style="color:rgb(0,0,255);line-height:1.5;">new</span> DiscoveryClient.CacheRefreshThread()), (<span style="color:rgb(0,0,255);line-height:1.5;">long</span><span style="line-height:1.5;">)renewalIntervalInSecs, TimeUnit.SECONDS);
    }

    </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.clientConfig.shouldRegisterWithEureka()) {
        renewalIntervalInSecs </span>= <span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.instanceInfo.getLeaseInfo().getRenewalIntervalInSecs();
        expBackOffBound </span>= <span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.clientConfig.getHeartbeatExecutorExponentialBackOffBound();
        logger.info(</span>"Starting heartbeat executor: renew interval is: " +<span style="line-height:1.5;"> renewalIntervalInSecs);
        </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span>.scheduler.schedule(<span style="color:rgb(0,0,255);line-height:1.5;">new</span> TimedSupervisorTask("heartbeat", <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.scheduler, <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.heartbeatExecutor, renewalIntervalInSecs, TimeUnit.SECONDS, expBackOffBound, <span style="color:rgb(0,0,255);line-height:1.5;">new</span> DiscoveryClient.HeartbeatThread(<span style="color:rgb(0,0,255);line-height:1.5;">null</span>)), (<span style="color:rgb(0,0,255);line-height:1.5;">long</span><span style="line-height:1.5;">)renewalIntervalInSecs, TimeUnit.SECONDS);
        </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span>.instanceInfoReplicator = <span style="color:rgb(0,0,255);line-height:1.5;">new</span> InstanceInfoReplicator(<span style="color:rgb(0,0,255);line-height:1.5;">this</span>, <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.instanceInfo, <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.clientConfig.getInstanceInfoReplicationIntervalSeconds(), 2<span style="line-height:1.5;">);
        </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span>.statusChangeListener = <span style="color:rgb(0,0,255);line-height:1.5;">new</span><span style="line-height:1.5;"> StatusChangeListener() {
            </span><span style="color:rgb(0,0,255);line-height:1.5;">public</span><span style="line-height:1.5;"> String getId() {
                </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span> "statusChangeListener"<span style="line-height:1.5;">;
            }

            </span><span style="color:rgb(0,0,255);line-height:1.5;">public</span> <span style="color:rgb(0,0,255);line-height:1.5;">void</span><span style="line-height:1.5;"> notify(StatusChangeEvent statusChangeEvent) {
                </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(InstanceStatus.DOWN != statusChangeEvent.getStatus() &amp;&amp; InstanceStatus.DOWN !=<span style="line-height:1.5;"> statusChangeEvent.getPreviousStatus()) {
                    DiscoveryClient.logger.info(</span>"Saw local status change event {}"<span style="line-height:1.5;">, statusChangeEvent);
                } </span><span style="color:rgb(0,0,255);line-height:1.5;">else</span><span style="line-height:1.5;"> {
                    DiscoveryClient.logger.warn(</span>"Saw local status change event {}"<span style="line-height:1.5;">, statusChangeEvent);
                }

                DiscoveryClient.</span><span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.instanceInfoReplicator.onDemandUpdate();
            }
        };
        </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.clientConfig.shouldOnDemandUpdateStatusChange()) {
            </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span>.applicationInfoManager.registerStatusChangeListener(<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.statusChangeListener);
        }

        </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span>.instanceInfoReplicator.start(<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.clientConfig.getInitialInstanceInfoReplicationIntervalSeconds());
    } </span><span style="color:rgb(0,0,255);line-height:1.5;">else</span><span style="line-height:1.5;"> {
        logger.info(</span>"Not registering with Eureka server per configuration"<span style="line-height:1.5;">);
    }

}</span></pre><div class="cnblogs_code_toolbar" style="margin-top:5px;"><span class="cnblogs_code_copy" style="padding-right:5px;line-height:1.5;"><a title="复制代码" style="color:rgb(7,93,179);text-decoration:underline;border:none;"><img src="https://i-blog.csdnimg.cn/blog_migrate/48304ba5e6f9fe08f3fa1abda7d326ab.gif" alt="复制代码" style="max-width:900px;border:none;"></a></span></div></div><p style="margin:10px auto;">  在上面的函数中,可以看到一个与服务注册相关的判断语句&nbsp;if(this.clientConfig.shouldRegisterWithEureka())。在该分支内,创建了一个 InstanceInfoReplicator 类的实例,他会执行一个定时任务,而这个定时任务的具体工作可以查看该类的run() 函数,具体如下所示:</p><div class="cnblogs_code" style="background-color:rgb(245,245,245);border:1px solid rgb(204,204,204);padding:5px;margin:5px 0px;font-family:'Courier New';font-size:12px;"><div class="cnblogs_code_toolbar" style="margin-top:5px;"><span class="cnblogs_code_copy" style="padding-right:5px;line-height:1.5;"><a title="复制代码" style="color:rgb(7,93,179);text-decoration:underline;border:none;"><img src="https://i-blog.csdnimg.cn/blog_migrate/48304ba5e6f9fe08f3fa1abda7d326ab.gif" alt="复制代码" style="max-width:900px;border:none;"></a></span></div><pre style="margin-bottom:0px;white-space:pre-wrap;font-family:'Courier New';"><span style="color:rgb(0,0,255);line-height:1.5;">public</span> <span style="color:rgb(0,0,255);line-height:1.5;">void</span><span style="line-height:1.5;"> run() {
    </span><span style="color:rgb(0,0,255);line-height:1.5;">boolean</span> var6 = <span style="color:rgb(0,0,255);line-height:1.5;">false</span><span style="line-height:1.5;">;

    ScheduledFuture next2;
    label53: {
        </span><span style="color:rgb(0,0,255);line-height:1.5;">try</span><span style="line-height:1.5;"> {
            var6 </span>= <span style="color:rgb(0,0,255);line-height:1.5;">true</span><span style="line-height:1.5;">;
            </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.discoveryClient.refreshInstanceInfo();
            Long next </span>= <span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.instanceInfo.isDirtyWithTime();
            </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(next != <span style="color:rgb(0,0,255);line-height:1.5;">null</span><span style="line-height:1.5;">) {
                </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.discoveryClient.register();
                </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.instanceInfo.unsetIsDirty(next.longValue());
                var6 </span>= <span style="color:rgb(0,0,255);line-height:1.5;">false</span><span style="line-height:1.5;">;
            } </span><span style="color:rgb(0,0,255);line-height:1.5;">else</span><span style="line-height:1.5;"> {
                var6 </span>= <span style="color:rgb(0,0,255);line-height:1.5;">false</span><span style="line-height:1.5;">;
            }
            </span><span style="color:rgb(0,0,255);line-height:1.5;">break</span><span style="line-height:1.5;"> label53;
        } </span><span style="color:rgb(0,0,255);line-height:1.5;">catch</span><span style="line-height:1.5;"> (Throwable var7) {
            logger.warn(</span>"There was a problem with the instance info replicator"<span style="line-height:1.5;">, var7);
            var6 </span>= <span style="color:rgb(0,0,255);line-height:1.5;">false</span><span style="line-height:1.5;">;
        } </span><span style="color:rgb(0,0,255);line-height:1.5;">finally</span><span style="line-height:1.5;"> {
            </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span><span style="line-height:1.5;">(var6) {
                ScheduledFuture next1 </span>= <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.scheduler.schedule(<span style="color:rgb(0,0,255);line-height:1.5;">this</span>, (<span style="color:rgb(0,0,255);line-height:1.5;">long</span>)<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.replicationIntervalSeconds, TimeUnit.SECONDS);
                </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.scheduledPeriodicRef.set(next1);
            }
        }

        next2 </span>= <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.scheduler.schedule(<span style="color:rgb(0,0,255);line-height:1.5;">this</span>, (<span style="color:rgb(0,0,255);line-height:1.5;">long</span>)<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.replicationIntervalSeconds, TimeUnit.SECONDS);
        </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.scheduledPeriodicRef.set(next2);
        </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span><span style="line-height:1.5;">;
    }

    next2 </span>= <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.scheduler.schedule(<span style="color:rgb(0,0,255);line-height:1.5;">this</span>, (<span style="color:rgb(0,0,255);line-height:1.5;">long</span>)<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.replicationIntervalSeconds, TimeUnit.SECONDS);
    </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.scheduledPeriodicRef.set(next2);
}</span></pre><div class="cnblogs_code_toolbar" style="margin-top:5px;"><span class="cnblogs_code_copy" style="padding-right:5px;line-height:1.5;"><a title="复制代码" style="color:rgb(7,93,179);text-decoration:underline;border:none;"><img src="https://i-blog.csdnimg.cn/blog_migrate/48304ba5e6f9fe08f3fa1abda7d326ab.gif" alt="复制代码" style="max-width:900px;border:none;"></a></span></div></div><p style="margin:10px auto;">  这里有个&nbsp;this.discoveryClient.register(); 这一行,真正触发调用注册的地方就在这里,继续查看register() 的实现内容,如下:</p><div class="cnblogs_code" style="background-color:rgb(245,245,245);border:1px solid rgb(204,204,204);padding:5px;margin:5px 0px;font-family:'Courier New';font-size:12px;"><div class="cnblogs_code_toolbar" style="margin-top:5px;"><span class="cnblogs_code_copy" style="padding-right:5px;line-height:1.5;"><a title="复制代码" style="color:rgb(7,93,179);text-decoration:underline;border:none;"><img src="https://i-blog.csdnimg.cn/blog_migrate/48304ba5e6f9fe08f3fa1abda7d326ab.gif" alt="复制代码" style="max-width:900px;border:none;"></a></span></div><pre style="margin-bottom:0px;white-space:pre-wrap;font-family:'Courier New';">  <span style="color:rgb(0,0,255);line-height:1.5;">boolean</span> register() <span style="color:rgb(0,0,255);line-height:1.5;">throws</span><span style="line-height:1.5;"> Throwable {
    logger.info(</span>"DiscoveryClient_" + <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.appPathIdentifier + ": registering service..."<span style="line-height:1.5;">);

    EurekaHttpResponse httpResponse;
    </span><span style="color:rgb(0,0,255);line-height:1.5;">try</span><span style="line-height:1.5;"> {
        httpResponse </span>= <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.eurekaTransport.registrationClient.register(<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.instanceInfo);
    } </span><span style="color:rgb(0,0,255);line-height:1.5;">catch</span><span style="line-height:1.5;"> (Exception var3) {
        logger.warn(</span>"{} - registration failed {}", <span style="color:rgb(0,0,255);line-height:1.5;">new</span> Object[]{"DiscoveryClient_" + <span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.appPathIdentifier, var3.getMessage(), var3});
        </span><span style="color:rgb(0,0,255);line-height:1.5;">throw</span><span style="line-height:1.5;"> var3;
    }

    </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span><span style="line-height:1.5;">(logger.isInfoEnabled()) {
        logger.info(</span>"{} - registration status: {}", "DiscoveryClient_" + <span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.appPathIdentifier, Integer.valueOf(httpResponse.getStatusCode()));
    }

    </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span> httpResponse.getStatusCode() == 204<span style="line-height:1.5;">;
}</span></pre><div class="cnblogs_code_toolbar" style="margin-top:5px;"><span class="cnblogs_code_copy" style="padding-right:5px;line-height:1.5;"><a title="复制代码" style="color:rgb(7,93,179);text-decoration:underline;border:none;"><img src="https://i-blog.csdnimg.cn/blog_migrate/48304ba5e6f9fe08f3fa1abda7d326ab.gif" alt="复制代码" style="max-width:900px;border:none;"></a></span></div></div><p style="margin:10px auto;">  可以看出,注册操作也是通过REST请求的方式进行的。同时,我们能看到发起注册请求的时候,传入了一个&nbsp;instanceInfo 对象,该对象就是注册时客户端给服务端的服务的元数据。</p><h4 style="font-size:14px;margin-top:10px;margin-bottom:10px;">  服务获取与服务续约</h4><p style="margin:10px auto;">  顺着上面的思路,继续看 DiscoveryClient 的&nbsp;initScheduledTasks 函数,不难发现在其中还有两个定时任务,分别是 “服务获取” 和 “服务续约” :</p><div class="cnblogs_code" style="background-color:rgb(245,245,245);border:1px solid rgb(204,204,204);padding:5px;margin:5px 0px;font-family:'Courier New';font-size:12px;"><div class="cnblogs_code_toolbar" style="margin-top:5px;"><span class="cnblogs_code_copy" style="padding-right:5px;line-height:1.5;"><a title="复制代码" style="color:rgb(7,93,179);text-decoration:underline;border:none;"><img src="https://i-blog.csdnimg.cn/blog_migrate/48304ba5e6f9fe08f3fa1abda7d326ab.gif" alt="复制代码" style="max-width:900px;border:none;"></a></span></div><pre style="margin-bottom:0px;white-space:pre-wrap;font-family:'Courier New';"><span style="color:rgb(0,0,255);line-height:1.5;">private</span> <span style="color:rgb(0,0,255);line-height:1.5;">void</span><span style="line-height:1.5;"> initScheduledTasks() {
    </span><span style="color:rgb(0,0,255);line-height:1.5;">int</span><span style="line-height:1.5;"> renewalIntervalInSecs;
    </span><span style="color:rgb(0,0,255);line-height:1.5;">int</span><span style="line-height:1.5;"> expBackOffBound;
    </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.clientConfig.shouldFetchRegistry()) {
        renewalIntervalInSecs </span>= <span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.clientConfig.getRegistryFetchIntervalSeconds();
        expBackOffBound </span>= <span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.clientConfig.getCacheRefreshExecutorExponentialBackOffBound();
        </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span>.scheduler.schedule(<span style="color:rgb(0,0,255);line-height:1.5;">new</span> TimedSupervisorTask("cacheRefresh", <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.scheduler, <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.cacheRefreshExecutor, renewalIntervalInSecs, TimeUnit.SECONDS, expBackOffBound, <span style="color:rgb(0,0,255);line-height:1.5;">new</span> DiscoveryClient.CacheRefreshThread()), (<span style="color:rgb(0,0,255);line-height:1.5;">long</span><span style="line-height:1.5;">)renewalIntervalInSecs, TimeUnit.SECONDS);
    }

    </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.clientConfig.shouldRegisterWithEureka()) {
        renewalIntervalInSecs </span>= <span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.instanceInfo.getLeaseInfo().getRenewalIntervalInSecs();
        expBackOffBound </span>= <span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.clientConfig.getHeartbeatExecutorExponentialBackOffBound();
        logger.info(</span>"Starting heartbeat executor: renew interval is: " +<span style="line-height:1.5;"> renewalIntervalInSecs);
        </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span>.scheduler.schedule(<span style="color:rgb(0,0,255);line-height:1.5;">new</span> TimedSupervisorTask("heartbeat", <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.scheduler, <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.heartbeatExecutor, renewalIntervalInSecs, TimeUnit.SECONDS, expBackOffBound, <span style="color:rgb(0,0,255);line-height:1.5;">new</span> DiscoveryClient.HeartbeatThread(<span style="color:rgb(0,0,255);line-height:1.5;">null</span>)), (<span style="color:rgb(0,0,255);line-height:1.5;">long</span><span style="line-height:1.5;">)renewalIntervalInSecs, TimeUnit.SECONDS);
        …………</span><span style="line-height:1.5;">
    } </span><span style="color:rgb(0,0,255);line-height:1.5;">else</span><span style="line-height:1.5;"> {
        logger.info(</span>"Not registering with Eureka server per configuration"<span style="line-height:1.5;">);
    }

}</span></pre><div class="cnblogs_code_toolbar" style="margin-top:5px;"><span class="cnblogs_code_copy" style="padding-right:5px;line-height:1.5;"><a title="复制代码" style="color:rgb(7,93,179);text-decoration:underline;border:none;"><img src="https://i-blog.csdnimg.cn/blog_migrate/48304ba5e6f9fe08f3fa1abda7d326ab.gif" alt="复制代码" style="max-width:900px;border:none;"></a></span></div></div><p style="margin:10px auto;">  从源码中可以看出,“服务获取” 任务相对于 “服务续约” 和 “服务注册” 任务更为独立。“服务续约” 与 “服务注册” 在同一个 if 逻辑中,这个不难理解,服务注册到Eureka Server 后,需要一个心跳去续约,防止被剔除,所以它们肯定是成对出现的。</p><p style="margin:10px auto;">  而 “服务获取” 的逻辑在一个独立的 if 判断中,而且是由eureka.client.fetch-registry=true 参数控制,它默认为true,大部分情况下不需关心。</p><p style="margin:10px auto;">&nbsp;  继续往下可以发现 “服务获取” 和 “服务续约” 的具体方法,其中 “服务续约” 的实现比较简单,直接以REST请求的方式进行续约:</p><div class="cnblogs_code" style="background-color:rgb(245,245,245);border:1px solid rgb(204,204,204);padding:5px;margin:5px 0px;font-family:'Courier New';font-size:12px;"><div class="cnblogs_code_toolbar" style="margin-top:5px;"><span class="cnblogs_code_copy" style="padding-right:5px;line-height:1.5;"><a title="复制代码" style="color:rgb(7,93,179);text-decoration:underline;border:none;"><img src="https://i-blog.csdnimg.cn/blog_migrate/48304ba5e6f9fe08f3fa1abda7d326ab.gif" alt="复制代码" style="max-width:900px;border:none;"></a></span></div><pre style="margin-bottom:0px;white-space:pre-wrap;font-family:'Courier New';"><span style="color:rgb(0,0,255);line-height:1.5;">boolean</span><span style="line-height:1.5;"> renew() {
    </span><span style="color:rgb(0,0,255);line-height:1.5;">try</span><span style="line-height:1.5;"> {
        EurekaHttpResponse httpResponse </span>= <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.eurekaTransport.registrationClient.sendHeartBeat(<span style="color:rgb(0,0,255);line-height:1.5;">this</span>.instanceInfo.getAppName(), <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.instanceInfo.getId(), <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.instanceInfo, (InstanceStatus)<span style="color:rgb(0,0,255);line-height:1.5;">null</span><span style="line-height:1.5;">);
        logger.debug(</span>"{} - Heartbeat status: {}", "DiscoveryClient_" + <span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.appPathIdentifier, Integer.valueOf(httpResponse.getStatusCode()));
        </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(httpResponse.getStatusCode() == 404<span style="line-height:1.5;">) {
            </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.REREGISTER_COUNTER.increment();
            logger.info(</span>"{} - Re-registering apps/{}", "DiscoveryClient_" + <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.appPathIdentifier, <span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.instanceInfo.getAppName());
            </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span> <span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.register();
        } </span><span style="color:rgb(0,0,255);line-height:1.5;">else</span><span style="line-height:1.5;"> {
            </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span> httpResponse.getStatusCode() == 200<span style="line-height:1.5;">;
        }
    } </span><span style="color:rgb(0,0,255);line-height:1.5;">catch</span><span style="line-height:1.5;"> (Throwable var3) {
        logger.error(</span>"{} - was unable to send heartbeat!", "DiscoveryClient_" + <span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.appPathIdentifier, var3);
        </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span> <span style="color:rgb(0,0,255);line-height:1.5;">false</span><span style="line-height:1.5;">;
    }
}</span></pre><div class="cnblogs_code_toolbar" style="margin-top:5px;"><span class="cnblogs_code_copy" style="padding-right:5px;line-height:1.5;"><a title="复制代码" style="color:rgb(7,93,179);text-decoration:underline;border:none;"><img src="https://i-blog.csdnimg.cn/blog_migrate/48304ba5e6f9fe08f3fa1abda7d326ab.gif" alt="复制代码" style="max-width:900px;border:none;"></a></span></div></div><p style="margin:10px auto;">  而 “服务获取” 则复杂一些,会根据是否是第一次获取发起不同的 REST 请求和相应的处理。</p><h4 style="font-size:14px;margin-top:10px;margin-bottom:10px;">  服务注册中心处理</h4><p style="margin:10px auto;">  通过上面的源码分析,可以看到所有的交互都是通过 REST 请求发起的。下面看看服务注册中心对这些请求的处理。Eureka Server 对于各类 REST 请求的定义都位于 com.netflix.eureka.resources 包下。</p><p style="margin:10px auto;">  以 “服务注册” 请求为例(在ApplicationResource类中):</p><div class="cnblogs_code" style="background-color:rgb(245,245,245);border:1px solid rgb(204,204,204);padding:5px;margin:5px 0px;font-family:'Courier New';font-size:12px;"><div class="cnblogs_code_toolbar" style="margin-top:5px;"><span class="cnblogs_code_copy" style="padding-right:5px;line-height:1.5;"><a title="复制代码" style="color:rgb(7,93,179);text-decoration:underline;border:none;"><img src="https://i-blog.csdnimg.cn/blog_migrate/48304ba5e6f9fe08f3fa1abda7d326ab.gif" alt="复制代码" style="max-width:900px;border:none;"></a></span></div><pre style="margin-bottom:0px;white-space:pre-wrap;font-family:'Courier New';"><span style="line-height:1.5;">@POST
@Consumes({</span>"application/json", "application/xml"<span style="line-height:1.5;">})
</span><span style="color:rgb(0,0,255);line-height:1.5;">public</span> Response addInstance(InstanceInfo info, @HeaderParam("x-netflix-discovery-replication"<span style="line-height:1.5;">) String isReplication) {
    logger.debug(</span>"Registering instance {} (replication={})"<span style="line-height:1.5;">, info.getId(), isReplication);
    </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.isBlank(info.getId())) {
        </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span> Response.status(400).entity("Missing instanceId"<span style="line-height:1.5;">).build();
    } </span><span style="color:rgb(0,0,255);line-height:1.5;">else</span> <span style="color:rgb(0,0,255);line-height:1.5;">if</span>(<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.isBlank(info.getHostName())) {
        </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span> Response.status(400).entity("Missing hostname"<span style="line-height:1.5;">).build();
    } </span><span style="color:rgb(0,0,255);line-height:1.5;">else</span> <span style="color:rgb(0,0,255);line-height:1.5;">if</span>(<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.isBlank(info.getAppName())) {
        </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span> Response.status(400).entity("Missing appName"<span style="line-height:1.5;">).build();
    } </span><span style="color:rgb(0,0,255);line-height:1.5;">else</span> <span style="color:rgb(0,0,255);line-height:1.5;">if</span>(!<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.appName.equals(info.getAppName())) {
        </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span> Response.status(400).entity("Mismatched appName, expecting " + <span style="color:rgb(0,0,255);line-height:1.5;">this</span>.appName + " but was " +<span style="line-height:1.5;"> info.getAppName()).build();
    } </span><span style="color:rgb(0,0,255);line-height:1.5;">else</span> <span style="color:rgb(0,0,255);line-height:1.5;">if</span>(info.getDataCenterInfo() == <span style="color:rgb(0,0,255);line-height:1.5;">null</span><span style="line-height:1.5;">) {
        </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span> Response.status(400).entity("Missing dataCenterInfo"<span style="line-height:1.5;">).build();
    } </span><span style="color:rgb(0,0,255);line-height:1.5;">else</span> <span style="color:rgb(0,0,255);line-height:1.5;">if</span>(info.getDataCenterInfo().getName() == <span style="color:rgb(0,0,255);line-height:1.5;">null</span><span style="line-height:1.5;">) {
        </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span> Response.status(400).entity("Missing dataCenterInfo Name"<span style="line-height:1.5;">).build();
    } </span><span style="color:rgb(0,0,255);line-height:1.5;">else</span><span style="line-height:1.5;"> {
        DataCenterInfo dataCenterInfo </span>=<span style="line-height:1.5;"> info.getDataCenterInfo();
        </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(dataCenterInfo <span style="color:rgb(0,0,255);line-height:1.5;">instanceof</span><span style="line-height:1.5;"> UniqueIdentifier) {
            String dataCenterInfoId </span>=<span style="line-height:1.5;"> ((UniqueIdentifier)dataCenterInfo).getId();
            </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.isBlank(dataCenterInfoId)) {
                </span><span style="color:rgb(0,0,255);line-height:1.5;">boolean</span> experimental = "true".equalsIgnoreCase(<span style="color:rgb(0,0,255);line-height:1.5;">this</span>.serverConfig.getExperimental("registration.validation.dataCenterInfoId"<span style="line-height:1.5;">));
                </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span><span style="line-height:1.5;">(experimental) {
                    String amazonInfo1 </span>= "DataCenterInfo of type " + dataCenterInfo.getClass() + " must contain a valid id"<span style="line-height:1.5;">;
                    </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span> Response.status(400<span style="line-height:1.5;">).entity(amazonInfo1).build();
                }

                </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(dataCenterInfo <span style="color:rgb(0,0,255);line-height:1.5;">instanceof</span><span style="line-height:1.5;"> AmazonInfo) {
                    AmazonInfo amazonInfo </span>=<span style="line-height:1.5;"> (AmazonInfo)dataCenterInfo;
                    String effectiveId </span>=<span style="line-height:1.5;"> amazonInfo.get(MetaDataKey.instanceId);
                    </span><span style="color:rgb(0,0,255);line-height:1.5;">if</span>(effectiveId == <span style="color:rgb(0,0,255);line-height:1.5;">null</span><span style="line-height:1.5;">) {
                        amazonInfo.getMetadata().put(MetaDataKey.instanceId.getName(), info.getId());
                    }
                } </span><span style="color:rgb(0,0,255);line-height:1.5;">else</span><span style="line-height:1.5;"> {
                    logger.warn(</span>"Registering DataCenterInfo of type {} without an appropriate id"<span style="line-height:1.5;">, dataCenterInfo.getClass());
                }
            }
        }

        </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span>.registry.register(info, "true"<span style="line-height:1.5;">.equals(isReplication));
        </span><span style="color:rgb(0,0,255);line-height:1.5;">return</span> Response.status(204<span style="line-height:1.5;">).build();
    }
}</span></pre><div class="cnblogs_code_toolbar" style="margin-top:5px;"><span class="cnblogs_code_copy" style="padding-right:5px;line-height:1.5;"><a title="复制代码" style="color:rgb(7,93,179);text-decoration:underline;border:none;"><img src="https://i-blog.csdnimg.cn/blog_migrate/48304ba5e6f9fe08f3fa1abda7d326ab.gif" alt="复制代码" style="max-width:900px;border:none;"></a></span></div></div><p style="margin:10px auto;">  在对注册信息进行了一堆校验之后,会调用 org.springframework.cloud.netflix.eureka.server.InstanceRegister 对象中的 register( InstanceInfo info, int leaseDuration, boolean isReplication) 函数来进行服务注册:</p><div class="cnblogs_code" style="background-color:rgb(245,245,245);border:1px solid rgb(204,204,204);padding:5px;margin:5px 0px;font-family:'Courier New';font-size:12px;"><pre style="margin-bottom:0px;white-space:pre-wrap;font-family:'Courier New';"> <span style="color:rgb(0,0,255);line-height:1.5;">public</span> <span style="color:rgb(0,0,255);line-height:1.5;">void</span> register(InstanceInfo info, <span style="color:rgb(0,0,255);line-height:1.5;">int</span> leaseDuration, <span style="color:rgb(0,0,255);line-height:1.5;">boolean</span><span style="line-height:1.5;"> isReplication) {
    </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">.handleRegistration(info, leaseDuration, isReplication);
    </span><span style="color:rgb(0,0,255);line-height:1.5;">super</span><span style="line-height:1.5;">.register(info, leaseDuration, isReplication);
}</span></pre></div><div class="cnblogs_code" style="background-color:rgb(245,245,245);border:1px solid rgb(204,204,204);padding:5px;margin:5px 0px;font-family:'Courier New';font-size:12px;"><pre style="margin-bottom:0px;white-space:pre-wrap;font-family:'Courier New';"> <span style="color:rgb(0,0,255);line-height:1.5;">private</span> <span style="color:rgb(0,0,255);line-height:1.5;">void</span> handleRegistration(InstanceInfo info, <span style="color:rgb(0,0,255);line-height:1.5;">int</span> leaseDuration, <span style="color:rgb(0,0,255);line-height:1.5;">boolean</span><span style="line-height:1.5;"> isReplication) {
    </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span>.log("register " + info.getAppName() + ", vip " + info.getVIPAddress() + ", leaseDuration " + leaseDuration + ", isReplication " +<span style="line-height:1.5;"> isReplication);
    </span><span style="color:rgb(0,0,255);line-height:1.5;">this</span>.publishEvent(<span style="color:rgb(0,0,255);line-height:1.5;">new</span> EurekaInstanceRegisteredEvent(<span style="color:rgb(0,0,255);line-height:1.5;">this</span><span style="line-height:1.5;">, info, leaseDuration, isReplication));
}</span></pre></div><p style="margin:10px auto;">  在注册函数中,先调用publishEvent 函数,将该新服务注册的事件传播出去,然后调用 com.netflix.eureka.registry.AbstractInstanceRegistry 父类中的注册实现,将 InstanceInfo 中的元数据信息存储在一个 ConcurrentHashMap 对象中。正如之前所说,注册中心存储了两层 Map 结构,第一层的key 存储服务名: InstanceInfo 中的APPName 属性,第二层的 key 存储实例名:InstanceInfo中的 instanceId 属性。</p><h3 style="font-size:16px;line-height:1.5;margin-top:10px;margin-bottom:10px;"><a name="t15"></a>配置详解</h3><p style="margin:10px auto;">  在 Eureka 的服务治理体系中,主要分为服务端和客户端两个不同的角色,服务端为服务注册中心,而客户端为各个提供接口的微服务应用。当我们构建了高可用的注册中心之后,该集群中所有的微服务应用和后续将要介绍的一些基础类应用(如配置中心、API网关等)都可以视为该体系下的一个微服务(Eureka客户端)。服务注册中心也一样,只是高可用环境下的服务注册中心除了服务端之外,还为集群中的其他客户端提供了服务注册的特殊功能。所以,Eureka 客户端的配置对象存在于所有 Eureka 服务治理体系下的应用实例中。在使用使用 Spring cloud Eureka 的过程中, 我们所做的配置内容几乎都是对 Eureka 客户端配置进行的操作,所以了解这部分的配置内容,对于用好 Eureka 非常有帮助。</p><p style="margin:10px auto;">  Eureka 客户端的配置主要分为以下两个方面:</p><ul style="margin-left:30px;"><li>服务注册相关的配置信息,包括服务注册中心的地址、服务获取的间隔时间、可用区域等。</li><li>服务实例相关的配置信息,包括服务实例的名称、IP地址、端口号、健康检查路径等。</li></ul><p style="margin:10px auto;">  </p><h3 style="font-size:16px;line-height:1.5;margin-top:10px;margin-bottom:10px;"><a name="t16"></a>服务注册类配置</h3><p style="margin:10px auto;">  关于服务注册类的配置信息,我们可以通过查看 org.springframework.cloud.netflix.eureka.EurekaClientConfigBean 的源码来获得比官方文档中更为详尽的内容,这些配置信息都已 eureka.client 为前缀。下面针对一些常用的配置信息做进一步的介绍和说明。</p><h4 style="font-size:14px;margin-top:10px;margin-bottom:10px;">  指定注册中心</h4><p style="margin:10px auto;">  在配置文件中通过&nbsp;eureka.client.service-url 实现。该参数定义如下所示,它的配置值存储在HashMap类型中,并且设置有一组默认值,默认值的key为 defaultZone、value 为 http://localhost:8761/eureka/,类名为&nbsp;EurekaClientConfigBean。</p><div class="cnblogs_code" style="background-color:rgb(245,245,245);border:1px solid rgb(204,204,204);padding:5px;margin:5px 0px;font-family:'Courier New';font-size:12px;"><pre style="margin-bottom:0px;white-space:pre-wrap;font-family:'Courier New';"><span style="color:rgb(0,0,255);line-height:1.5;">private</span> Map&lt;String, String&gt; serviceUrl = <span style="color:rgb(0,0,255);line-height:1.5;">new</span><span style="line-height:1.5;"> HashMap();

this.serviceUrl.put(“defaultZone”, “http://localhost:8761/eureka/”);

public static final String DEFAULT_URL = “http://localhost:8761/eureka/”;
public static final String DEFAULT_ZONE = “defaultZone”;

  由于之前的服务注册中心使用了 8082 端口,所以我们做了如下配置,来讲应用注册到对应的 Eureka 服务端中。

eureka.client.service-url.defaultZone=http://localhost:8082/eureka/

  当构建了高可用的服务注册中心集群时,可以为参数的value 值配置多个注册中心的地址(逗号分隔):

eureka.client.service-url.defaultZone=http://peer1:1111/eureka/,http://peer2:1112/eureka/

  另外,为了服务注册中心的安全考虑,很多时候会为服务注册中心加入安全校验。这个时候,在配置serviceUrl时,需要在value 值的 URL 中加入响应的安全校验信息,比如: http://<username>:<password>@localhost:1111/eureka。其中<username>为安全校验信息的用户名,<password>为该用户的密码。

  其他配置

  这些参数均以 eureka.client 为前缀。

 

服务实例类配置

  关于服务实例类的配置信息,可以通过查看 org.springframework.cloud.netflix.eureka.EurekaInstanceConfigBean 的源码来获取详细内容,这些配置均以 eureka.instance 为前缀。

  元数据

  在 org.springframework.cloud.netflix.eureka.EurekaInstanceConfigBean 的配置信息中,有一大部分内容都是对服务实例元数据的配置,元数据是 Eureka 客户端在向注册中心发送注册请求时,用来描述自身服务信息的对象,其中包含了一些标准化的元数据,比如服务名称、实例名称、实例IP、实例端口等用于服务治理的重要信息;以及一些用于负载均衡策略或是其他特殊用途的自定义元数据信息。

  在使用 Spring Cloud Eureka 的时候,所有的配置信息都通过 org.springframework.cloud.netflix.eureka.EurekaInstanceConfigBean 进行加载,但在真正进行服务注册时,还是会包装成 com.netflix.appinfo.InstanceInfo 对象发送给 Eureka 客户端。这两个类的定义非常相似,可以直接查看 com.netflix.appinfo.InstanceInfo 类中的详细定义来了解原声的 Eureka 对元数据的定义。其中,Map<String, String> metaData = new ConcurrentHashMap<String, String>(); 是自定义的元数据信息,而其他成员变量则是标准化的元数据信息。Spring Cloud 的EurekaInstanceConfigBean 对原生元数据对象做了一些配置优化处理,在后续的介绍中会提到这些内容。

  我们可以通过 eureka.instance.<properties>=<value> 的格式对标准化元数据直接进行配置,<properties> 就是 EurekaInstanceConfigBean 对象中的成员变量名。对于自定义元数据,可以通过 eureka.instance.metadataMap.<key>=<value> 的格式来进行配置。

  接着,针对一些常用的元数据配置做进一步的介绍和说明。

 

  实例名配置

  实例名,即 InstanceInfo 中的 instanceId 参数,它是区分同一服务中不同实例的唯一标识。在NetflixEureka 的原生实现中,实例名采用主机名作为默认值,这样的设置使得在同一主机上无法启动多个相同的服务实例。所以,在 Spring Cloud Eureka 的配置中,针对同一主机中启动多实例的情况,对实例名的默认命名做了更为合理的扩展,它采用了如下默认规则:


     
     
      
      
       
        
         
         
           s 
          
         
           p 
          
         
           r 
          
         
           i 
          
         
           n 
          
         
           g 
          
         
           . 
          
         
           c 
          
         
           l 
          
         
           o 
          
         
           u 
          
         
           d 
          
         
           . 
          
         
           c 
          
         
           l 
          
         
           i 
          
         
           e 
          
         
           n 
          
         
           t 
          
         
           . 
          
         
           h 
          
         
           o 
          
         
           s 
          
         
           t 
          
         
           n 
          
         
           a 
          
         
           m 
          
         
           e 
          
         
        
          : 
         
       
       
       
         {spring.cloud.client.hostname}: 
       
      
      
     
     spring.cloud.client.hostname:{spring.application.name}:
     
     
      
      
       
        
         
         
           s 
          
         
           p 
          
         
           r 
          
         
           i 
          
         
           n 
          
         
           g 
          
         
           . 
          
         
           a 
          
         
           p 
          
         
           p 
          
         
           l 
          
         
           i 
          
         
           c 
          
         
           a 
          
         
           t 
          
         
           i 
          
         
           o 
          
         
           n 
          
         
           . 
          
         
           i 
          
         
           n 
          
         
           s 
          
         
           t 
          
         
           a 
          
         
           n 
          
         
           c 
          
          
          
            e 
           
          
            i 
           
          
         
           d 
          
         
        
          : 
         
       
       
       
         {spring.application.instance_id}: 
       
      
      
     
     spring.application.instanceid:{server.port}

  对于实例名的命名规则,可以通过eureka.instance.instanceId 参数来进行配置。比如,在本地进行客户端负载均衡调试时,需要启动同一服务的多个实例,如果我们直接启动同一个应用必然会发生端口冲突。虽然可以在命令行中指定不同的server.port 来启动,但这样略显麻烦。可以直接通过设置 server.port=0 或者使用随机数 server.port= r a n d o m . i n t [ 10000 , 19999 ] 来 让 T o m c a t 启 动 的 时 候 采 用 随 机 端 口 。 但 是 这 个 时 候 会 发 现 注 册 到 E u r e k a S e r v e r 的 实 例 名 都 是 相 同 的 , 这 会 使 得 只 有 一 个 服 务 实 例 能 够 正 常 提 供 服 务 。 对 于 这 个 问 题 , 就 可 以 通 过 设 置 实 例 名 规 则 来 轻 松 解 决 : &lt; / p &gt; &lt; d i v c l a s s = &quot; c n b l o g s c o d e &quot; s t y l e = &quot; b a c k g r o u n d − c o l o r : r g b ( 245 , 245 , 245 ) ; b o r d e r : 1 p x s o l i d r g b ( 204 , 204 , 204 ) ; p a d d i n g : 5 p x ; m a r g i n : 5 p x 0 p x ; f o n t − f a m i l y : ′ C o u r i e r N e w ′ ; f o n t − s i z e : 12 p x ; &quot; &gt; &lt; p r e s t y l e = &quot; m a r g i n − b o t t o m : 0 p x ; w h i t e − s p a c e : p r e − w r a p ; f o n t − f a m i l y : ′ C o u r i e r N e w ′ ; &quot; &gt; e u r e k a . i n s t a n c e . i n s t a n c e I d = {random.int[10000,19999]} 来让Tomcat 启动的时候采用随机端口。但是这个时候会发现注册到 Eureka Server的实例名都是相同的,这会使得只有一个服务实例能够正常提供服务。对于这个问题,就可以通过设置实例名规则来轻松解决:&lt;/p&gt;&lt;div class=&quot;cnblogs_code&quot; style=&quot;background-color:rgb(245,245,245);border:1px solid rgb(204,204,204);padding:5px;margin:5px 0px;font-family:&#x27;Courier New&#x27;;font-size:12px;&quot;&gt;&lt;pre style=&quot;margin-bottom:0px;white-space:pre-wrap;font-family:&#x27;Courier New&#x27;;&quot;&gt;eureka.instance.instanceId= random.int[10000,19999]TomcatEurekaServer使</p><divclass="cnblogscode"style="backgroundcolor:rgb(245,245,245);border:1pxsolidrgb(204,204,204);padding:5px;margin:5px0px;fontfamily:CourierNew;fontsize:12px;"><prestyle="marginbottom:0px;whitespace:prewrap;fontfamily:CourierNew;">eureka.instance.instanceId={spring.application.name}?{random.int}

  通过上面的配置,利用应用名+随机数的方式来区分不同的实例,从而实现在同一个主机上,不指定端就能轻松启动多个实例的效果。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值