Spring Boot使用actuator监控管理
1.在pom文件中导入相关的依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>
2.直接启动Spring Boot项目,可以看到控制台中打印如下信息
注意:Spring Boot2.x以上的版本默认不打印其他的映射信息,只有这一行。而且访问也是由localhost:8080/xxx变成了localhost:8080/actuator/xxx
3.访问后,页面信息如下图所示
4.actuator后面的名称就是端点,端点信息如下
5.但是直接访问health和info以外的端点会报404错误,例如下图
6.通过下面的配置启用所有的监控端点,默认情况下,这些端点是禁用的
management.endpoints.web.exposure.include=*
7.重新启动项目,即可访问各个端点
原文地址:https://www.cnblogs.com/ywb-articles/p/10823764.html
时间: 2024-11-07 13:05:21