BeanFactory获取IOC容器的两种方式

BeanFactory获取IOC容器的两种方式

上一篇里面有测试使用到环境,dao、service等。这里就直接使用了

package spring;

import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.FileSystemResource;

public class BenFactoryTest {
	public static void main(String[] args) {
		/**
		 * BeanFactory获取IOC容器的两种方式:
		 * 			1、[推荐使用]ClassPathResource从类路径(class字节码所在的路径)下加载xml文件
		 * 			2、FileSystemResource从文件系统路径下加载xml文件
		 */
			//加载单个配置文件
				BeanFactory factory= new XmlBeanFactory(new ClassPathResource("applicationContext.xml"));
				//BeanFactory factory= new XmlBeanFactory(new ClassPathResource("config/applicationContext.xml"));
		    
		   //2
				//BeanFactory factory= new XmlBeanFactory(new FileSystemResource("src/applicationContext.xml"));
				//BeanFactory factory= new XmlBeanFactory(new FileSystemResource("src/config/applicationContext_2.xml"));
		
			//获取工厂中的service对象
				UserService userService=(UserService)factory.getBean("userService");
				
				//调用方法
				userService.findUsers();
	}

}

下一篇:applicationContext与BeanFactory获取IOC容器的比较

你可能感兴趣的:(Spring框架)