Spring-boot特征:Whitelabel Error Page
常见目录
/actuator
查看有哪些 Actuator端点是开放的。
/actuator/auditevent
auditevents端点提供有关应用程序审计事件的信息。
/actuator/beans
beans端点提供有关应用程序 bean 的信息。
/actuator/conditions
conditions端点提供有关配置和自动配置类条件评估的信息。
/actuator/configprops
configprops端点提供有关应用程序@ConfigurationPropertiesbean的信息。
/actuator/env
查看全部环境属性,可以看到 SpringBoot 载入哪些 properties,以及 properties 的值(会自动用*替换 key、password、secret 等关键字的 properties 的值)。
/actuator/flyway
flyway端点提供有关 Flyway 执行的数据库迁移的信息。
/actuator/health
端点提供有关应用程序运行状况的health详细信息。
/actuator/heapdump
heapdump端点提供来自应用程序 JVM 的堆转储。(通过分析查看/env端点被*号替换到数据的具体值。)
/actuator/httptrace
httptrace端点提供有关 HTTP 请求-响应交换的信息。(包括用户HTTP请求的Cookie数据,会造成Cookie泄露等)。
/actuator/info
info端点提供有关应用程序的一般信息。
/actuator/integrationgraph
integrationgraph端点公开了一个包含所有 Spring Integration 组件的图。
/actuator/liquibase
liquibase端点提供有关 Liquibase 应用的数据库更改集的信息。
/actuator/logfile
logfile端点提供对应用程序日志文件内容的访问。
/actuator/loggers
loggers端点提供对应用程序记录器及其级别配置的访问。
/actuator/mappings
mappings端点提供有关应用程序请求映射的信息。
/actuator/metrics
metrics端点提供对应用程序指标的访问。
/actuator/prometheus
端点以prometheusPrometheus 服务器抓取所需的格式提供 Spring Boot 应用程序的指标。
/actuator/quartz
quartz端点提供有关由 Quartz 调度程序管理的作业和触发器的信息。
/actuator/scheduledtasks
scheduledtasks端点提供有关应用程序计划任务的信息。
/actuator/sessions
sessions端点提供有关由 Spring Session 管理的应用程序 HTTP 会话的信息。
/actuator/startup
startup端点提供有关应用程序启动顺序的信息。
/actuator/shutdown
shutdown端点用于关闭应用程序
标签:spring,有关,boot,应用程序,信息,端点,提供,挖掘,actuator
From: https://www.cnblogs.com/JuneC/p/18572204