Spring如何利用XmlBeanFactory类加载bean的配置文件?

转自:http://blog.sina.com.cn/s/blog_530bf5d20100bzps.html

配置文件beans.xml的配置如下:


xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans 
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">


   
             p:geli-ref="ljm"/>


代码加载方法如下:

BeanFactory bf = new XmlBeanFactory("beans.xml");


即可加载该配置文件。




你可能感兴趣的:(Spring)