繁体   English   中英

春季:-如果从web.xml加载上下文,我们如何获得Bean?

[英]Spring: - How can we get Bean if context are loaded from web.xml?

我正在学习在项目中使用的spring 。我在web.xml中找到了contextConfigLocation条目

 /WEB-INF/context/*-context.xml
 classpath:/context/database-context.xml
 classpath:/context/database-service-context.xml
 classpath:/context/business-process-management-service-context.xml

和听众

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

在一个我读如下的核心项目中

 Resource r=new ClassPathResource("applicationContext.xml");  
 BeanFactory factory=new XmlBeanFactory(r);  
 Employee s=(Employee)factory.getBean("e"); 

但是无法弄清楚事情是如何工作的以及在何处调用getBean()函数吗?

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM