spring boot 监控工具 actuator
添加依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>
- 默认已经开启了两个端点 /info, /health
- 如果开发中希望使用更多的端点在 applicaiton.properties 中写入如下句子
management.endpoints.web.exposure.include=* // * 代表暴露所有端点
management.endpoints.web.exposure.include=info,health,beans //表示只开启 info,health,beans 端点
其中 /beans 是用来用来检测spring容器中所有对象
其中 /env 是显示当前所有系统环境变量、java变量的一个端点、springboot 自己的配置信息
生产环境下不要暴露这些端点