Eureka客户端在eureka服务器UI中以“UNKNOWN”运行

时间:2017-11-04 06:47:42

标签: spring-boot netflix-eureka

我创建了一个Eureka服务器spring启动应用程序。它已正确加载。之后我试图创建一个Eureka客户端。但它没有在eureka服务器UI中列出。我正在添加我的客户端应用程序详细信息。

我的主控制器类文件如下,

@SpringBootApplication
@EnableDiscoveryClient
public class ZEurekaClientServiceApplication {

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

我的pom.xml包含

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-eureka</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>

我的application.properties文件包含,

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

当客户端运行时,eureka服务器UI不显示其名称。正在显示UNKNOWN作为应用程序。我在下面添加了截图。enter image description here

我需要在eureka服务器UI中显示应用程序名称而不是“UNKNOWN”吗?是否有任何其他设置来添加应用程序名称?

1 个答案:

答案 0 :(得分:1)

您可以在application.ymlapplication.properties中设置应用名称,以指定应用名称。

对于application.yml:

spring:
  application:
    name: {YUOR_APPLICATION_NAME}

对于applciation.yml:

spring.application.name={YUOR_APPLICATION_NAME}