我们有一个使用自定义上下文路径的服务。为了在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
主页上。对于我们没有自定义上下文路径的应用程序,它正在运行:
知道哪些属性最终会丢失?
答案 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>