标签:
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
标签:
原文地址:http://www.cnblogs.com/zgen/p/5899388.html