SpringBoot 从容器中获取对象

Posted code_____monkey

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot 从容器中获取对象相关的知识,希望对你有一定的参考价值。

有时候在项目中,我们会自己创建一些类,类中需要使用到容器中的一些类。方法是新建类并实现ApplicationContextAware 接口,在类中建立静态对象 ApplicationContext 对象,这个对象就如同xml配置中的 applicationContext.xml,容器中类都可以获取到。例如@Service、 @Component、@Repository、@Controller 、@Bean 标注的类都能获取到。
 

/**
 * 功能描述:Spring Bean 管理类
 *
 */
@Component
public class SpringContextUtils implements ApplicationContextAware 

    /**
     * 上下文对象实例
     */
    private static ApplicationContext applicationContext;

    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException 
        this.applicationContext = applicationContext;
    

    /**
     * 获取applicationContext
     *
     * @return
     */
    public static ApplicationContext getApplicationContext() 
        return applicationContext;
    

    /**
     * 通过name获取 Bean.
     *
     * @param name
     * @return
     */
    public static Object getBean(String name) 
        return getApplicationContext().getBean(name);
    

    /**
     * 通过class获取Bean.
     *
     * @param clazz
     * @param <T>
     * @return
     */
    public static <T> T getBean(Class<T> clazz) 
        try
            return getApplicationContext().getBean(clazz);
        catch (Exception e)
            return null;
        
    

    /**
     * 通过name,以及Clazz返回指定的Bean
     *
     * @param name
     * @param clazz
     * @param <T>
     * @return
     */
    public static <T> T getBean(String name, Class<T> clazz) 
        return getApplicationContext().getBean(name, clazz);
    


以上是关于SpringBoot 从容器中获取对象的主要内容,如果未能解决你的问题,请参考以下文章

Spring从容器中获取bean对象可以分别通过啥接口

Spring从容器中获取bean对象可以分别通过啥接口?

如何获取容器中的bean对象

Springboot注解 - @Lazy和@Scope

195-如何获取Spring容器中的对象?

195-如何获取Spring容器中的对象?