Spring Boot框架提供帮助监控和管理应用,只需2个步骤:
1. 在项目的pom.xml配置依赖:
<dependency><groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
2. 启动项目,即可通过以下URL监控相关信息,如:
http://localhost:8080/health 查看应用健康指标
http://localhost:8080/beans 查看所有Spring Beans的完整列表http://localhost:8080/metrics 查看应用基本指标