spring的BeanFactory加载过程
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring的BeanFactory加载过程相关的知识,希望对你有一定的参考价值。
ApplicationContext spring = new ClassPathXmlApplicationContext("classpath*:spring/applicationContext.xml"); CommonBean job = (CommonBean)spring.getBean("activityLotteryJob");
配置:
<context:annotation-config/>
<context:component-scan base-package="com.cc"> <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/> </context:component-scan>
@Autowired AutowiredAnnotationBeanPostProcessor
@Resource CommonAnnotationBeanPostProcessor
@PersistenceContext PersistenceAnnotationBeanPostProcessor
@Required RequiredAnnotationBeanPostProcessor
以上是关于spring的BeanFactory加载过程的主要内容,如果未能解决你的问题,请参考以下文章
Spring核心之BeanFactory 一张图看懂getBean全过程.
Spring核心之BeanFactory 一张图看懂getBean全过程.
Spring IOC高级特性:lazy-Init 延迟加载FactoryBean 和 BeanFactory后置处理器