springboot中如何查看运行中容器里面所有Bean

重生 SpringBoot 发布时间:2024-03-07 22:28:19 阅读数:6556 1
在日常开发中,我们经常遇见 "*** bean"找不到的现象,那么这种情况我们如果确定真的没有,还是假的没有呢?
下文笔者讲述具体的实现方法,如下所示
我们只需借助 actuator 组件,即可实现查看容器中所有bean的效果
例:springBoot查看bean的示例
1.引入 actuator依赖
  
    <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>

2.配置 application 配置文件,启用所有endpoints 
   management.endpoints.web.exposure.include=*
 
3.查看bean信息
     
    启动SpringBoot项目
    http://localhost:8080/actuator
    
    查看所有的spring bean
    http://localhost:8080/actuator/beans

    8080指Springboot启动端口
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaFramework/SpringBoot/202403/8110.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者