Spring Boot Admin - info.version

时间:2017-08-09 09:39:53

标签: spring spring-boot spring-boot-admin

我们有一个使用自定义上下文路径的服务。为了在Eureka Server上正确注册我们的服务,我们设置了以下内容:

eureka.instance.statusPageUrl=http://xxx/custom/info
eureka.instance.healthCheckUrl=http://xxx/custom/health
eureka.instance.homePageUrl=http://xxx/custom/

这很好用,我们的应用程序已注册。但是,虽然我们设置了info.version信息,但它并未显示在Spring Boot Admin主页上。对于我们没有自定义上下文路径的应用程序,它正在运行:

enter image description here

知道哪些属性最终会丢失?

1 个答案:

答案 0 :(得分:0)

您需要将以下内容添加到pom.xml中:

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <executions>
                <execution>
                    <goals>
                        <goal>build-info</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

Documentation link