Spring Boot - 使用类类型信息获取所有已加载的bean

2024-05-19 19:38

本文主要是介绍Spring Boot - 使用类类型信息获取所有已加载的bean,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Spring启动会在内部加载大量bean,以最少的配置运行您的应用程序。在这个例子中,我们将学习如何找出所有那些Spring boot加载的bean及其类类型信息。

使用ApplicationContext获取所有已加载的bean

要自动执行方法,当应用程序完全加载时,我正在使用CommandLineRunner接口。CommandLineRunner用于指示bean 在Spring应用程序中包含时应该运行

1)ApplicationContext.getBeanDefinitionNames()用于查找所有已加载bean的名称
2)ApplicationContext.getBean(beanName)用于获取bean,包括其运行时类型信息。

package com.howtodoinjava.app.controller;

 

import java.util.Arrays;

 

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.boot.CommandLineRunner;

import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.SpringBootApplication;

import org.springframework.boot.builder.SpringApplicationBuilder;

import org.springframework.boot.web.support.SpringBootServletInitializer;

import org.springframework.context.ApplicationContext;

 

@SpringBootApplication

public class SpringBootWebApplication extends SpringBootServletInitializer implementsCommandLineRunner {

 

    @Override

    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {

        return application.sources(SpringBootWebApplication.class);

    }

 

    public static void main(String[] args) throws Exception {

        SpringApplication.run(SpringBootWebApplication.class, args);

    }

     

    @Autowired

    private ApplicationContext appContext;

     

    @Override

    public void run(String... args) throws Exception

    {

        String[] beans = appContext.getBeanDefinitionNames();

        Arrays.sort(beans);

        for (String bean : beans)

        {

            System.out.println(bean + " of Type :: " + appContext.getBean(bean).getClass());

        }

    }

}

在应用程序上运行将在控制台中打印bean名称和类型信息,如下所示:

2017-03-06 13:22:50 - Tomcat started on port(s): 8080 (http)

 

basicErrorController of Type :: classorg.springframework.boot.autoconfigure.web.BasicErrorController

beanNameHandlerMapping of Type :: classorg.springframework.web.servlet.handler.BeanNameUrlHandlerMapping

beanNameViewResolver of Type :: class org.springframework.web.servlet.view.BeanNameViewResolver

characterEncodingFilter of Type :: classorg.springframework.boot.web.filter.OrderedCharacterEncodingFilter

conventionErrorViewResolver of Type :: classorg.springframework.boot.autoconfigure.web.DefaultErrorViewResolver

defaultServletHandlerMapping of Type :: classorg.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport$EmptyHandlerMapping

defaultViewResolver of Type :: classorg.springframework.web.servlet.view.InternalResourceViewResolver

dispatcherServlet of Type :: class org.springframework.web.servlet.DispatcherServlet

dispatcherServletRegistration of Type :: classorg.springframework.boot.web.servlet.ServletRegistrationBean

duplicateServerPropertiesDetector of Type :: classorg.springframework.boot.autoconfigure.web.ServerPropertiesAutoConfiguration$DuplicateServerPropertiesDetector

embeddedServletContainerCustomizerBeanPostProcessor of Type :: classorg.springframework.boot.context.embedded.EmbeddedServletContainerCustomizerBeanPostProcessor

error of Type :: classorg.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$SpelView

errorAttributes of Type :: classorg.springframework.boot.autoconfigure.web.DefaultErrorAttributes

...

...

...

我截断了输出。您可以自己验证整个列表。

这篇关于Spring Boot - 使用类类型信息获取所有已加载的bean的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/995873

相关文章

Python虚拟环境终极(含PyCharm的使用教程)

《Python虚拟环境终极(含PyCharm的使用教程)》:本文主要介绍Python虚拟环境终极(含PyCharm的使用教程),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,... 目录一、为什么需要虚拟环境?二、虚拟环境创建方式对比三、命令行创建虚拟环境(venv)3.1 基础命令3

Python Transformer 库安装配置及使用方法

《PythonTransformer库安装配置及使用方法》HuggingFaceTransformers是自然语言处理(NLP)领域最流行的开源库之一,支持基于Transformer架构的预训练模... 目录python 中的 Transformer 库及使用方法一、库的概述二、安装与配置三、基础使用:Pi

关于pandas的read_csv方法使用解读

《关于pandas的read_csv方法使用解读》:本文主要介绍关于pandas的read_csv方法使用,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录pandas的read_csv方法解读read_csv中的参数基本参数通用解析参数空值处理相关参数时间处理相关

使用Node.js制作图片上传服务的详细教程

《使用Node.js制作图片上传服务的详细教程》在现代Web应用开发中,图片上传是一项常见且重要的功能,借助Node.js强大的生态系统,我们可以轻松搭建高效的图片上传服务,本文将深入探讨如何使用No... 目录准备工作搭建 Express 服务器配置 multer 进行图片上传处理图片上传请求完整代码示例

SpringBoot条件注解核心作用与使用场景详解

《SpringBoot条件注解核心作用与使用场景详解》SpringBoot的条件注解为开发者提供了强大的动态配置能力,理解其原理和适用场景是构建灵活、可扩展应用的关键,本文将系统梳理所有常用的条件注... 目录引言一、条件注解的核心机制二、SpringBoot内置条件注解详解1、@ConditionalOn

Python中使用正则表达式精准匹配IP地址的案例

《Python中使用正则表达式精准匹配IP地址的案例》Python的正则表达式(re模块)是完成这个任务的利器,但你知道怎么写才能准确匹配各种合法的IP地址吗,今天我们就来详细探讨这个问题,感兴趣的朋... 目录为什么需要IP正则表达式?IP地址的基本结构基础正则表达式写法精确匹配0-255的数字验证IP地

通过Spring层面进行事务回滚的实现

《通过Spring层面进行事务回滚的实现》本文主要介绍了通过Spring层面进行事务回滚的实现,包括声明式事务和编程式事务,具有一定的参考价值,感兴趣的可以了解一下... 目录声明式事务回滚:1. 基础注解配置2. 指定回滚异常类型3. ​不回滚特殊场景编程式事务回滚:1. ​使用 TransactionT

使用Python实现全能手机虚拟键盘的示例代码

《使用Python实现全能手机虚拟键盘的示例代码》在数字化办公时代,你是否遇到过这样的场景:会议室投影电脑突然键盘失灵、躺在沙发上想远程控制书房电脑、或者需要给长辈远程协助操作?今天我要分享的Pyth... 目录一、项目概述:不止于键盘的远程控制方案1.1 创新价值1.2 技术栈全景二、需求实现步骤一、需求

Spring LDAP目录服务的使用示例

《SpringLDAP目录服务的使用示例》本文主要介绍了SpringLDAP目录服务的使用示例... 目录引言一、Spring LDAP基础二、LdapTemplate详解三、LDAP对象映射四、基本LDAP操作4.1 查询操作4.2 添加操作4.3 修改操作4.4 删除操作五、认证与授权六、高级特性与最佳

Spring Shell 命令行实现交互式Shell应用开发

《SpringShell命令行实现交互式Shell应用开发》本文主要介绍了SpringShell命令行实现交互式Shell应用开发,能够帮助开发者快速构建功能丰富的命令行应用程序,具有一定的参考价... 目录引言一、Spring Shell概述二、创建命令类三、命令参数处理四、命令分组与帮助系统五、自定义S