【SpringBoot】查看运行环境中所有的spring bean

前言

  • spring boot : 2.0.0.RELEASE
  • maven
  • eclipse
  • 在开发&调试过程中,提示某个Bean找不到。此时就需要查看运行环境中有没有这个bean,以便快速排除出该问题的具体原因。

解决办法

通过 actuator 功能查看运行环境中所有的spring bean。
简介:
actuator是spring boot的一个附加功能,可帮助你在应用程序生产环境时监视和管理应用程序。可以使用HTTP的各种请求来监管,审计,收集应用的运行情况.0特别对于微服务管理十分有意义.

实操

引入actuator依赖
如果需要使用这些功能,只需要在代码中引入actuator的start即可.

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

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

management.endpoints.web.exposure.include=*

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

    原文作者:sayyy
    原文地址: https://blog.csdn.net/sayyy/article/details/80843805
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞