Spring Boot的Actuator在应用程序中提供众多Web端点,我们可以通过它们了解应用程序允许的状态,也可以通过提供的rest接口可以获取整个依赖于spring体系中bean如何组装在一起,也可以掌握应用程序允许的环境属性消息等
如何启用Actuator的端点,只需要在项目中引入Actuator的依赖:
在Maven中构建 :
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
其中springboot2.x版本与spirngboot1.5x构建有很大不同
springboot2.x:
@Endpoint(id = "dtc-refresh"):@Endpoint设置为端点类id设置端点访问路径
@WriteOperation:类比于post请求作用
@DeleteOperation:类比于delete请求作用
@ReadOperation:类比于get请求作用
@Selector:接收请求参数
第一步定义端点类:
@Endpoint(id = "test")
public class TestEndpoint{
/**
*test
*/
@WriteOperation
public void test1() {
//编写代码