spring-boot挖掘

JuneCy發表於2024-11-27

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端點用於關閉應用程式

相關文章