SpringBoot监控与运维 1. pom.xml添加actuator依赖 2. application.yml添加监控配置 3. 监控窗口 1. pom.xml添加actuator依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> 2. application.yml添加监控配置 management: server: port: 8081 3. 监控窗口 http://localhost:8081/actuator 相关文章: 2021-12-12 2021-12-10 2021-11-18 2021-04-13 2021-08-15 2021-08-07