通过实现ApplicationContextAware接口动态获取bean

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过实现ApplicationContextAware接口动态获取bean相关的知识,希望对你有一定的参考价值。

转载自:http://penghuaiyi.iteye.com/blog/2042296

场景:

在代码中需要动态获取spring管理的bean

代码:

SpringContextUtils.java

package com.winner.utils;

import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;

/**
 * Spring的工具类,用来获得配置文件中的bean
 */
@Component
public class SpringContextUtils implements ApplicationContextAware {

    private static ApplicationContext applicationContext;

    /**
     *  当继承了ApplicationContextAware类之后,那么程序在调用 getBean(String)的时候会自动调用该方法,
     * 不用自己操作
     */
    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        SpringContextUtils.applicationContext = applicationContext;
    }

    /***
     * 根据一个bean的id获取配置文件中相应的bean
     */
    public static Object getBean(String beanId) throws BeansException {
        if (applicationContext.containsBean(beanId)) {
            applicationContext.getBean(beanId);
        }
        return null;
    }

    /***
     * 根据一个bean的类型获取配置文件中相应的bean
     */
    public static <T> T getBeanByClass(Class<T> requiredType) throws BeansException {
        return applicationContext.getBean(requiredType);
    }

    /**
     * 如果BeanFactory包含一个与所给名称匹配的bean定义,则返回true
     */
    public static boolean containsBean(String name) {
        return applicationContext.containsBean(name);
    }

    public static ApplicationContext getApplicationContext() {
        return SpringContextUtils.applicationContext;
    }
}

这几个注解所在的包是

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>4.2.5.RELEASE</version>
</dependency>

SpringContextUtils必须放在Spring容器中

要么在xml配置文件中声明,要么加上注解

 

 

以上是关于通过实现ApplicationContextAware接口动态获取bean的主要内容,如果未能解决你的问题,请参考以下文章

通过实现BeanPostProcessor来实现AOP

Python通过Groupby实现分组

输出需要通过一个查询来实现

iOS 通过KVO实现响应式编程

通过FTP服务端来实现匿名用户和基本用户的访问,可以实现文件上传和下载。通过web网站来浏览内容

每日算法220719通过数组实现队列