spring cloud服务发现注解之@EnableDiscoveryClient与@EnableEurekaClient

Posted 叶长风

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring cloud服务发现注解之@EnableDiscoveryClient与@EnableEurekaClient相关的知识,希望对你有一定的参考价值。

spring cloud服务发现注解之@EnableDiscoveryClient与@EnableEurekaClient


在之前的一篇文章Spring Cloud feign使用中在使用服务发现的时候提到了两种注解,一种为@EnableDiscoveryClient,一种为@EnableEurekaClient,用法上基本一致,今天就来讲下两者,下文是从stackoverflow上面找到的对这两者的解释:

There are multiple implementations of "Discovery Service" (eureka, consul, zookeeper). @EnableDiscoveryClient lives in spring-cloud-commons and picks the implementation on the classpath.  @EnableEurekaClient lives in spring-cloud-netflix and only works for eureka. If eureka is on your classpath, they are effectively the same.

原文地址为:What’s the difference between EnableEurekaClient and EnableDiscoveryClient?

意思也就是spring cloud中discovery service有许多种实现(eureka、consul、zookeeper等等),@EnableDiscoveryClient基于spring-cloud-commons, @EnableEurekaClient基于spring-cloud-netflix。

其实用更简单的话来说,就是如果选用的注册中心是eureka,那么就推荐@EnableEurekaClient,如果是其他的注册中心,那么推荐使用@EnableDiscoveryClient。

@EnableEurekaClient


我们具体的对@EnableEurekaClient的源码看一下,如下:


/**
 * Convenience annotation for clients to enable Eureka discovery configuration
 * (specifically). Use this (optionally) in case you want discovery and know for sure that
 * it is Eureka you want. All it does is turn on discovery and let the autoconfiguration
 * find the eureka classes if they are available (i.e. you need Eureka on the classpath as
 * well).
 *
 * @author Dave Syer
 * @author Spencer Gibb
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@EnableDiscoveryClient
public @interface EnableEurekaClient 


注解@EnableEurekaClient上有@EnableDiscoveryClient注解,可以说基本就是EnableEurekaClient有@EnableDiscoveryClient的功能,另外上面的注释中提到,其实**@EnableEurekaClient**z注解就是一种方便使用eureka的注解而已,可以说使用其他的注册中心后,都可以使用@EnableDiscoveryClient注解,但是使用@EnableEurekaClient的情景,就是在服务采用eureka作为注册中心的时候,使用场景较为单一。

@EnableDiscoveryClient就不再多讲了,上面基本已经讲述得差不多了。

原本准备在这一篇文章中同时讲下@EnableEurekaClient的源码以及工作原理,但是发现篇幅过长,所以这一篇就只讲这两个注解的不同,下一篇再讲@EnableEurekaClient的源码以及实现等等。

以上是关于spring cloud服务发现注解之@EnableDiscoveryClient与@EnableEurekaClient的主要内容,如果未能解决你的问题,请参考以下文章

SpringCloud之Eureka服务发现

Spring Cloud Nacos使用总结

spring cloud源码分析

Spring Cloud Alibaba 实战 之 Nacos 服务注册和发现

Spring Cloud Alibaba之服务发现组件 - Nacos

Spring Cloud 系列之 Eureka 实现服务注册与发现