SpringBoot 之查看运行环境中所有的Spring Bean

actuator是SpringBoot的一个附加功能,可帮助你在应用程序生产环境时监视和管理应用程序。可以使用HTTP的各种请求来监管,审计,收集应用的运行情况。

引入actuator依赖 :

<dependency>
  <groupId>org.springframework.bootgroupId>
  <artifactId>spring-boot-starter-actuatorartifactId>
dependency>

启用所有的endpoints:
在起作用的配置文件中添加配置(默认为:application.properties),如下:

management.endpoints.web.exposure.include=*

查看起效的endpoints:
http://localhost:8080/actuator
查看所有的SpringBean:
如果不出意外的话,使用下面的地址就可以进行查看:
http://localhost:8080/actuator/beans
查找某个特定的SpringBean:
在http://localhost:8080/actuator/beans页面上使用CTRL+F查找即可。

你可能感兴趣的:(#,SpringBoot)