在学习spring boot actuator时,添加好actuator的依赖以后还是无法访问http://localhost:8080/actuator/beans等端点
compile 'org.springframework.boot:spring-boot-starter-actuator'
但是却可以访问http://localhost:8080/actuator/health
原因:
Spring Boot 2.0 中的端点和之前的版本有较大不同,启用了不代表可以直接访问,还需要将其暴露出来。
默认只开放了info、health两个端点,剩余的需要自己通过配置management.endpoints.web.exposure.include
属性来加载(有include
自然就有exclude
)。如果想单独操作某个端点可以使用management.endpoint.端点.enabled
属性进行启用或禁用,比如:
# 可以关闭指定的端点
management.endpoint.shutdown.enabled=false
所以在项目的application.properties配置文件中增加如下配置即可:
#开启所有端点
management.endpoints.web.exposure.include=*