springBoot提供可视化的相关功能,方便监控,比如性能,应用的健康程度等,如何理解这句话?
这句话的意思是说,springboot 有提供可视化监控的插件,集成进去之后就可以使用了。比如 actuator。
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>