用BeanFactory 可以获取bean实例,象这样:
Resource res = new FileSystemResource("beans.xml");
BeanFactory factory = new XmlBeanFactory(res);
UserInfoDAOImpl user = (UserInfoDAOImpl) factory.getBean("userInfoDAO");
但spring推荐用applicationContext,在web环境下推荐在web.xml中实例化,于是我在web.xml中放入:
contextConfigLocation
/WEB-INF/classes/applicationContext.xml
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
但是程序中取得bean实例没找到例子(只有benafactory方式的例子,难道不用getBean吗?),或者有例子也是类似这样:
MessageSource resources = new ClassPathXmlApplicationContext("beans.xml");
但是applicationContext已经通过web.xml实例化了,没有必要再去读xml配置了,请教高手!!
[b]问题补充:[/b]
但我不是在servlet中取实例,我的程序只有一个mainservlet,然后就转给其它的bean了,能否在任意java程序中取呢?