2020
09-23
09-23
Spring Boot2.x如何自定义Endpoint
概述在使用SpringBoot的时候我们经常使用actuator,健康检查,bus中使用/refresh等。这里记录如何使用注解的方式自定义Endpoint。可用于满足一些服务状态监控,或者优雅停机等。准备SpringBoot项目,pom中加入:<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-actuator</artifactId></dependency>编写自定义Endpoint@Configuration@Endpoint(id="my-endpoint")publicclassMyE...
继续阅读 >