202010-08 Spring Boot 项目做性能监控的操作流程 SpringBoot特别适合团队构建各种可快速迭代的微服务,同时为了减少程序本身监控系统的开发量,SpringBoot提供了actuator模块,可以很方便的对你的SpringBoot程序做监控。1.actuator接口说明SpringBoot应用中加入监控很简单,只需要在pom.xml文件中加入以下依赖:<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-actuator</artifactId></dependency>为了保证actuator接... 继续阅读 >