您好,登錄后才能下訂單哦!
這篇文章主要介紹了SpringBoot注解方式自定義Endpoint的示例分析,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
在使用Spring Boot的時候我們經(jīng)常使用actuator,健康檢查,bus中使用/refresh等。這里記錄如何使用注解的方式自定義Endpoint??捎糜跐M足一些服務(wù)狀態(tài)監(jiān)控,或者優(yōu)雅停機等。
Spring Boot項目,pom中加入:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>
@Configuration @Endpoint(id = "my-endpoint") public class MyEndpoint { @ReadOperation public Map<String, Object> endpoint() { Map<String, Object> map = new HashMap<>(16); map.put("message", "this is my endpoint"); return map; } }
management.endpoints.web.exposure.include=my-endpoint
啟動后可以看到日志:
Mapped "{[/actuator/my-endpoint],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>)
@EndPoint中的id不能使用駝峰法,需要以-分割
@Spring Boot會去掃描@EndPoint注解下的@ReadOperation, @WriteOperation, @DeleteOperation注解,分別對應(yīng)生成Get/Post/Delete的Mapping。注解中有個produces參數(shù),可以指定media type, 如:application/json等。
目的
監(jiān)控并管理應(yīng)用程序
監(jiān)控:讓我們?nèi)グl(fā)現(xiàn)和了解程序的運行狀況各種指標
管理:比如說通過Actuator去做一個shutdown功能,通過訪問一個特定的url去操作,默認是不開啟的,另外 還可以在運行的過程中 對日志進行調(diào)整
訪問方式
HTTP
JMX
默認 會把更多的 Actuator 暴露在JMX上面
依賴
spring-boot-starter-actuator
只有health和info 默認是可以通過http 進行訪問的
shutdown
是默認不開啟的一個
threaddump
去看線程情況
Prometheus
雖然是默認開啟 但是 必須在pom文件上加入相關(guān)依賴 才能提供支持
HTTP 訪問
/actuator/<id >
端口與路徑
management.server.address=
Actuator Endpoint 發(fā)布的地址
management.server.port=
Actuator Endpoint 發(fā)布的端口號
management.endpoints.web.base-path=/actuator
自定義端口
management.endpoints.web.path-mapping.<id>=路徑
修改端點的訪問路徑(映射),端點默認使用的是它的 值
開啟 Endpoint
management.endpoint.<id>.enabled=true
開啟名為id的 Endpoint
management.endpoints.enabled-by-default=false
端點啟用是選擇性加入而不是選擇性排除。表示禁用了所有端點
暴露 Endpoint
management.endpoints.jmx.exposure.exclude=
jmx方式排除需要公開的端點
management.endpoints.jmx.exposure.include=*
jmx方式包含需要公開的端點
management.endpoints.web.exposure.exclude=
http方式排除需要公開的端點
management.endpoints.web.exposure.include=info, health
感謝你能夠認真閱讀完這篇文章,希望小編分享的“SpringBoot注解方式自定義Endpoint的示例分析”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。