1. 程式人生 > >spring boot actuator服務監控與管理

spring boot actuator服務監控與管理

1.引入actuator所需要的jar包

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

2.新增actuator所需要的配置(注意:如果使用properties檔案management.endpoints.web.exposure.include=*,此處不能加引號)

management:
  endpoints:
    web:
      exposure:
        #載入所有的斷點 預設只加載了info,health
        include: 
'*' endpoint: health: show-details: always shutdown: enabled: false

3.可通過訪問以下連線進行測試

 http://localhost:8080/actuator/health

4.更多詳細配置可檢視

https://blog.csdn.net/alinyua/article/details/80009435