Eureka 客户端异常 com.netflix.discovery.shared.transport.TransportException: 无法在任何已知服务器上执行请求

Eureka client exception com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known server

我是微服务新手。我正在尝试创建一个用于学习目的的小型应用程序。这是我的代码: 尤里卡服务器 - application.yml

    spring:
     application:
      name: EurekaServer

    server:
     port: 8080
     servlet:
      context-path: /EurekaServer

    eureka:
     client:
      fetch-registry: false
      register-with-eureka: false 

Eureka 服务器工作正常,我可以在 http://localhost:8080/EurekaServer

看到仪表板

EmployeeClient:application.yml如下:

    spring:
     application:
      name: EmployeeClient

    server:
     port: 8586

    eureka:
     client: 
      serviceUrl:
       defaultZone: http://localhost:8080/EurekaServer

在最后一行中,我需要明确地编写 serviceUrl,因为在 sts 中按 ctrl+space 它不显示选项 serviceUrl,但它显示 service-url,连字符。与 defaultZone 相同。我是否缺少某些 jar 或特定版本?

我的EmployeeClientApplication.java

    @EnableEurekaClient
    @SpringBootApplication
    public class EmployeeClientApplication {

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

当我尝试 运行 EmployeeClientApplication.java 时,它给出了以下异常:

    com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known server

我也尝试使用@EnableDiscoveryClient 代替@EnableEurekaClient,但没有成功。

EmployeeClient pom.xml的一部分如下:

    <parent>
       <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-starter-parent</artifactId>
       <version>2.0.3.RELEASE</version>
       <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
      <java.version>1.8</java.version>
      <spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
    </properties>

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

我哪里出错了?

我认为,您必须将客户端 属性 中的默认区域从 /EurekaServer 更改为 /eureka

eureka:
     client: 
      serviceUrl:
       defaultZone: http://localhost:8080/eureka

"/eureka" 是将服务注册到 eureka 注册表的其余端点。 进行更改并尝试,它应该可以工作。

除此之外,如果您愿意更改 UI 仪表板 url,您应该使用 eureka.dashboard.path 属性。

我不得不在 EmployeeClient 中使用以下行 application.yml

    defaultZone: http://localhost:8080/EurekaServer/eureka

如果您在服务器的应用程序属性文件中添加了 DiscoveryServer 作为应用程序名称,添加 eureka.instance.hostname=localhost 可以解决您的问题。