4.1 添加依赖
Spring Boot 基础就不介绍了,推荐下这个实战教程:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>
4.2 配置需要开启监控的端点
management: endpoint: health: ## 开启健康监控端点 enabled: true beans: ## 开启Bean实例监控端点 enabled: true
4.3 启动服务并验证
4.3.1 启动结果
4.3.2 查看各个监控信息
浏览器访问(查看监控信息地址):http://localhost:9500/actuator
其他API查看官方文档了解或者留言一起研究一下,厚着脸皮我也没怎么用过这个。不过下一章介绍了starter和autoconfigure之后我们就可以去研究actuator的源码了。。。。
总结
本章主要介绍了Spring Boot的四大组件的作用,其中主要是starter和autoconfigure,另外的CLI和actuator用的并不多,所以没有仔细介绍。