Spring中Bean获取IOC容器服务的方法
Posted 时间的朋友
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring中Bean获取IOC容器服务的方法相关的知识,希望对你有一定的参考价值。
Spring 依赖注入可以让所有的Bean对其IOC容器的存在是没有意识的,甚至可以将容器换成其它的。但实际开发中如果某个Bean对象要用到Spring 容器本身的功能资源,需要意识到IOC容器的存在才能调用Spring所提供的资源应该如何处理呢?
一、使用@Autowired依赖注入
只有是在同一个IOC容器中,就可以通过@Autowired依赖注入获取到对应的Bean对象,如下:
@Autowired private MessageSource messageSource; @Autowired private ResourceLoader resourceLoader; @Autowired private ApplicationContext applicationContext;
二、实现相应的Aware接口
Spring Aware接口的目的就是为了让Bean获取到IOC容器的各种服务,像是BeanFactoryAware、 BeanNameAware、ApplicationContextAware、ResourceLoaderAware、ServletContextAware等等。实现这些Aware接口的Bean在被实例化后可以获取相对应的资源,例如实现BeanFactoryAware的Bean在实例化后,Spring容器将会注入BeanFactory的实例,而实现ApplicationContextAware的Bean,在Bean被实例化后,将会被注入 ApplicationContext的实例等等。
如果要用在工具类静态方法中,一般采用实现接口的方式。如下:
@Service() @Lazy(false) public class SpringContextHolder implements ApplicationContextAware, DisposableBean { private static ApplicationContext applicationContext = null; /** * 实现ApplicationContextAware接口, 注入Context到静态变量中. */ @Override public void setApplicationContext(ApplicationContext applicationContext) { if (SpringContextHolder.applicationContext != null) { System.out.println("SpringContextHolder中的ApplicationContext被覆盖, 原有ApplicationContext为:" + SpringContextHolder.applicationContext); } System.out.println("Spring容器启动,将容器实例注入到SpringContextHolder实例bean中"); SpringContextHolder.applicationContext = applicationContext; }/** * 取得存储在静态变量中的ApplicationContext. */ public static ApplicationContext getApplicationContext() { return applicationContext; } /** * 从静态变量applicationContext中取得Bean, 自动转型为所赋值对象的类型. */ @SuppressWarnings("unchecked") public static <T> T getBean(String name) { return (T) applicationContext.getBean(name); } /** * 从静态变量applicationContext中取得Bean, 自动转型为所赋值对象的类型. */ public static <T> T getBean(Class<T> requiredType) { return applicationContext.getBean(requiredType); } }
以上是关于Spring中Bean获取IOC容器服务的方法的主要内容,如果未能解决你的问题,请参考以下文章
自定义一个SpringUtil用于通过静态方法获取被spring管理的bean对象,用于在静态方法中使用IOC中的bean或者是没有被spring管理的类中使用IOC容器的bean
Spring IOC 容器源码分析 - 创建单例 bean 的过程
Spring IOC 容器源码分析 - 创建单例 bean 的过程