微服务(eureka 客户端)未向 eureka 服务器注册/eureka 服务器未发现 eureka 客户端

Posted

技术标签:

【中文标题】微服务(eureka 客户端)未向 eureka 服务器注册/eureka 服务器未发现 eureka 客户端【英文标题】:Micro service(eureka client) is not registering with eureka server / eureka server is not discovering the eureka client 【发布时间】:2020-05-22 03:30:21 【问题描述】:

eureka 服务器设置

pom.xml

<properties>
    <java.version>1.8</java.version>
    <spring-cloud.version>Hoxton.SR1</spring-cloud.version>
</properties>

<dependencies>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
    </dependency>
</dependencies>
<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>$spring-cloud.version</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

主应用类

@SpringBootApplication
@EnableEurekaServer
public class DiscoveryServerApplication 

    public static void main(String[] args) 
        SpringApplication.run(DiscoveryServerApplication.class, args);
    

application.properties

server.port=8761
eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false

eureka 客户端设置

pom.xml

<properties>
    <java.version>1.8</java.version>
    <spring-cloud.version>Hoxton.SR1</spring-cloud.version>
</properties>
<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.2.3.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>
<dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-netflix-eureka-client</artifactId>
</dependency>
<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>$spring-cloud.version</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

主应用类

@SpringBootApplication
@EnableEurekaClient
public class CurrencyExchangeServiceApplication 

    public static void main(String[] args) 
        SpringApplication.run(CurrencyExchangeServiceApplication.class, args);
    

application.properties

server.port=8100
spring.application.name=currency-exchange-service

eureka.client.register-with-eureka=true
eureka.client.fetch-registry=true
eureka.client.serviceUrl.defaultZone=http://localhost:8761

我在eureka-server仪表板中没有看到微服务-currency-exchange-service注册到Eureka server(http://localhost:8761)

    为什么 eureka 客户端没有注册到 eureka 服务器? @EnableDiscoveryClient 是否与 @EnableEurekaClient 相同?

【问题讨论】:

检查客户端应用程序的日志,它无法连接到服务器,您可能会看到日志。 @Yogesh 我在客户端应用程序的日志中没有看到任何错误,也没有在日志中看到任何与尤里卡客户端相关的内容。但我在 eureka-server 日志中看到“已启动 eureka 服务器”。 【参考方案1】:

我已经创建并使用您的配置进行了测试。发现(eureka)客户端应用程序不需要以下两行。

eureka.client.register-with-eureka=true
eureka.client.fetch-registry=true

请使用以下依赖

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>

而不是

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-netflix-eureka-client</artifactId>
</dependency>

实际上register-with-eureka : false 正在停止向发现(eureka)服务器注册,因此将其从客户端应用程序中完全删除。

如果发现(eureka)服务器端口不是 8761,则添加以下行。例如,

eureka.client.serviceUrl.defaultZone=http://localhost:9000

【讨论】:

我已经添加了这个属性 - register-with-eureka : false in eureka server project 而不是客户端项目 更改eureka客户端依赖spring-cloud-starter-netflix-eureka-client就可以正常工作了。 谢谢亚历克斯。问题的根本原因是不正确的依赖关系。我将依赖项更改为 spring-cloud-starter-netflix-eureka-client 并开始工作。【参考方案2】: 客户端应用程序类上的

@EnableDiscoveryClient 注释将解决此问题。

这个注释比旧注释更受欢迎和推荐 - @EnableEurekaClient

@EnableEurekaClient 适用于旧版本的 Eureka 服务器。

@EnableDiscoveryClient 支持所有可用的发现服务(包括旧版本的 eureka 服务器)

【讨论】:

@EnableDiscoveryClient 在 spring-cloud-netflix-eureka-client 依赖 spring 云版本 - Hoxton.SR1 中不可用【参考方案3】:

既然你有这个执行器依赖,spring security 依赖应该已经默认添加到你的项目中。这个注册失败的可能原因是CSRF。尝试使用以下示例代码禁用 CSRF。

@EnableWebSecurity
    static class WebSecurityConfig extends WebSecurityConfigurerAdapter 
        @Override
        protected void configure(HttpSecurity http) throws Exception 
            http.csrf().disable();
        
    

关于您的问题中的第二点,spring 支持许多发现服务提供者,例如 consul,如果您使用的是 @EnableDiscoveryClient,它将尝试在类路径中找到完全匹配并将其用于发现服务,另一方面 @ EnableEurekaClient 更具体到 eureka 发现服务,尝试在类路径中查找 eureka 相关依赖。

【讨论】:

以上是关于微服务(eureka 客户端)未向 eureka 服务器注册/eureka 服务器未发现 eureka 客户端的主要内容,如果未能解决你的问题,请参考以下文章

小练习启动Eureka服务端程序

微服务~Eureka实现的服务注册与发现及服务之间的调用

spring cloud微服务分布式云架构-eureka 基础

Eureka入门

基于Spring Cloud的微服务构建学习-3 Spring Cloud Eureka配置详解

Spring Cloud微服务的服务治理组件eureka