在非srping容器管理的类中获取spring容器

当需要在非Spring管理的类中访问Spring容器时,可以创建一个工具类SpringContextUtil,继承ApplicationContextAware,并让Spring容器管理此工具类。在需要使用的地方,通过SpringContextUtil获取Bean,但需要注意避免在类变量初始化时直接调用getBean,以防止Spring容器尚未加载完成。
摘要由CSDN通过智能技术生成

在工作的时候需要在非srping容器管理的类中获取spring容器。在以前的开发中一般是分成两种情况,一是都是由spring容器进行管理;二是非spring管理。

碰到这种混在一起的情况比较困惑,故来csdn找寻帮助,得到了解决办法,现在写下博客作为自我记录。

应用场景

在非容器管理的service类中获取容器中的dao。

解决方案

编写工具类SpringContextUtil.java,继承了ApplicationContextAware.

public class SpringContextUtil implements ApplicationContextAware {

         private static ApplicationContext applicationContext; // Spring应用上下文环境

         /*

          * 实现了ApplicationContextAware 接口,必须实现该方法;

          *通过传递applicationContext参数初始化成员变量applicationContext

          */

         public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
               SpringContextUtil.applicationContext = applicationContext;
         }

 
         public static ApplicationContext getApplicationContext() {
             
                return applicationContext;
         }

  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值