普通java类调用spring中的bean
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了普通java类调用spring中的bean相关的知识,希望对你有一定的参考价值。
上一篇使用new ClassPathXmlApplicationContext 可以获取到spring上下文,但是有个问题:
因为它会每次都重新装载applicationContext-common.xml并实例化上下文bean, 如果有些线程配置类也是在这个配置文件中,那么会造成做相同工作的的线程会被启两次。一次是web容器初始化时启动,另一次是上述代码显示的实例化了一次。这在业务上是要避免的。
从性能上考虑,最好还是增加一个工具类,用来取得上下文ApplicationContext,这个工具类需要实现 ApplicationContextAware 接口。
(这里使用了@Component 注解,spring会自动扫描此工具类,不加注解的话,需要配置到Spring的xml中)
@Component public class SpringBeanFactoryUtils implements ApplicationContextAware { private static ApplicationContext context; @Override public void setApplicationContext(ApplicationContext ctx) throws BeansException { // TODO Auto-generated method stub context = ctx; } /** * 这是一个便利的方法,帮助我们快速得到一个BEAN * * @param beanName bean的名字 * @return 返回一个bean对象*/ public static Object getBean(String beanName) { return context.getBean(beanName); } }
然后在使用的地方用 SpringBeanFactoryUtils.getBean("xxx"); 就可以获取到所需要的bean了
以上是关于普通java类调用spring中的bean的主要内容,如果未能解决你的问题,请参考以下文章
在SpringBoot用普通类调用Spring管理的Bean
SpringBoot学习-SpringBoot中其他普通类调用Spring管理的Servicedao等bean
Java后台代码调用Spring的@Service Bean的方式
JAVA普通类怎么注入Spring的bean 例如 一个普通的JAVA类 我想引入一个dao层的入库方法。最好用注解方式