springboot2.0中引入Actuator组件依赖后,无法查看端点信息

问题描述:
springboot2.0中引入Actuator组件依赖后,无法查看端点信息
截图中依赖引入后,浏览器不显示信息
springboot2.0中引入Actuator组件依赖后,无法查看端点信息
解决方式:
在yml文件中添加如下配置
management:
endpoints:
web:
base-path: /application #此处名称可修改
exposure:
include: “*”
springboot2.0中引入Actuator组件依赖后,无法查看端点信息
成功查询展示:
springboot2.0中引入Actuator组件依赖后,无法查看端点信息