获取所有请求映射的Spring url不起作用(不再)

时间:2018-03-21 10:03:30

标签: spring spring-boot

通常我可以使用url获取url映射概述: /application/mappings

现在我得到了 我的日志中为PageNotFound - No mapping found for HTTP request with URI [/application/mappings],浏览器中为Response Status: 404 (Not Found)

其他春天网址/application/autoconfig, /application/beans and /application/configprops也会出现同样的问题。

我正在使用spring-boot 2.0.0.RELEASE。

致动器伪像被添加到pom中:

<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>

我做错了什么?

1 个答案:

答案 0 :(得分:0)

根据当前的Spring Boot 2.0 documentation,默认的执行器端点以/actuator为前缀,而不是/application。这与M4不同,我认为他们已在M7中对其进行了更改。

M4 docs:

  

例如,默认情况下,运行状况端点将映射到   /应用/健康。

M7文档:

  

例如,默认情况下,运行状况端点映射到   /致动器/健康