Spring 手动注入 不需要@Autowired 加载注入

因项目需要,需要动态得去创建某个类,但是这个类里得mapper缺不可以用;另外一个直连数据库得没问题;是因为当你new一个新的类得时候里面的mapper没有加载进去,只在项目启动的时候@Autowired 进行加载;所以这个时候就需要动态的去把这个mapper加载进去;

新建一个公共类

package com.cnpc.dj.party.common;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.stereotype.Component;
 
/**
 * 直接通过Spring 上下文获取SpringBean,用于多线程环境
 * by lida @20170629
 */
@Component
public class SpringContextUtil implements ApplicationContextAware {
 
    // Spring应用上下文环境
    private static ApplicationContext applicationContext;
 
    /**
     * 实现ApplicationContextAware接口的回调方法,设置上下文环境
     */
    public void setApplicationContext(ApplicationContext applicationContext)
        throws BeansException {
        SpringContextUtil.applicationContext = applicationContext;
    }
 
    public static ApplicationContext getApplicationContext() {
        return applicationContext;
    }
 
    /**
     * 获取对象 这里重写了bean方法,起主要作用
     * example: getBean("userService")//注意: 类名首字母一定要小写!
     */
    public static Object getBean(String beanId) throws BeansException {
        return applicationContext.getBean(beanId);
    }
}

具体使用:

InteCanprizeInterface api  = (InteCanprizeInterface)SpringContextUtil.getBean( bizeDBType+"InteCanprizeImpl");

记住类的首字母要小写

你可能感兴趣的:(工作学到)