共计 911 个字符,预计需要花费 3 分钟才能阅读完成。
(1) 添加依赖
我使用的 springboot 的版本是 2.0.5.RELEASE 版本
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
(2) 可以直接使用的请求
路径 | 作用 |
---|---|
/autoconfig | 获取应用的自动化配置报告 |
/beans | 获取应用上下文创建的所有 bean |
/configprops | 获取应用中配置的属性信息报告 |
/env | 用来获取应用所有可用的环境属性报告。包括环境变量、JVM 属性、应用的配置属性和命令行中的参数。 |
/mappings | 返回所有 Spring MVC 的控制器映射关系报告。 |
/info | 返回应用自定义的信息 |
/metrics | 用来返回当前应用的各类重要度量指标,比如内存信息、线程信息、垃圾收集信息等。 |
/health | 获取应用的各类健康指标信息。 |
/dump | 暴露程序运行中的线程信息。 |
/trace | 返回基本的 HTTP 跟踪信息。 |
/shutdown | 关闭应用,通过 endpoints.shutdown.enabled=true 进行设置。 |
(3) 出现问题
如果在访问上述端点的时候出现以下问题:
Full authentication is required to access actuator endpoints. Consider adding Spring Security or set 'management.security.enabled' to false.
解决方案:在 application.properties 文件中设置:
endpoints.actuator.enabled=true
endpoints.actuator.sensitive=false
endpoints.beans.sensitive=false
endpoints.beans.enabled=true
endpoints.health.sensitive=false
endpoints.health.enabled=true
#安全验证
management.security.enabled=false
正文完
发表至:无分类
2019-09-14