通常我可以使用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>
我做错了什么?
答案 0 :(得分:0)
根据当前的Spring Boot 2.0 documentation,默认的执行器端点以/actuator
为前缀,而不是/application
。这与M4不同,我认为他们已在M7中对其进行了更改。
M4 docs:
例如,默认情况下,运行状况端点将映射到 /应用/健康。
M7文档:
例如,默认情况下,运行状况端点映射到 /致动器/健康