弹簧启动执行器在错误的端点/应用程序上的响应

时间:2018-11-02 08:51:10

标签: spring spring-boot spring-boot-actuator

我尝试为Spring boot 2.1.0应用程序设置执行器。 所以我加了:

compile('org.springframework.boot:spring-boot-starter-actuator')
compile('io.micrometer:micrometer-core')
compile('io.micrometer:micrometer-registry-prometheus')

到我的build.gradle

和:

management.endpoints.web.exposure.include=*

到application.properties 就像在https://www.baeldung.com/spring-boot-actuators

上推荐

但是首先我得到了/ actuator的404。

经过一番研究,我发现spring将我的应用程序中的端点移动到了/ application(这很烦人,因为我在文档中什么都没有发现,这已经移动了。所以我想我还存在其他错误做到了。

但是只有状态和信息URL链接。而且我无法添加其他默认端点,例如flyway(我在项目中使用的端点)或指标。

当我致电/ application / info时,我得到一个空响应:

{}

但是至少应该显示“ env”,对吗?它表明出了点问题,但是我找不到原因。

0 个答案:

没有答案