`
什么向往
  • 浏览: 80000 次
  • 性别: Icon_minigender_1
  • 来自: 西安
社区版块
存档分类
最新评论

Spring IOC容器实现

 
阅读更多

   在Spring IOC 容器的代码是org.springframework.beans包中的BeanFactory接口,该接口提供了IOC容器的基本功能。

   而org.springframework.context包下的ApplicationContext接口扩展了BeanFactory,还提供了与Spring AOP集成、国际化处理、事件传播及提供不同层次的context实现 (如针对web应用的WebApplicationContext)。简单的说BeanFactory提供了IOC容器的最基本功能,而Application提供了更多的企业应用的支持。

 

      简单的对容器的实现做下总结。

 

 

import java.io.File;

import org.junit.Test;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.context.support.FileSystemXmlApplicationContext;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.FileSystemResource;
import org.springframework.core.io.Resource;
/**
 * IOC容器的实现
 * */
public class ContainerTest {
	/**
	 * beanfactory实现,从文件系统中获取资源
	 */
	@Test
	public void beanFactoryBaseonFileSystem(){
		//从文件系统中获取配置文件,默认为相对路径,也可以取绝对路径
		File file=new File("bin/resource/chapter01.xml");
		Resource resource=new FileSystemResource(file);
		//初始化容器
		BeanFactory bean=new XmlBeanFactory(resource);
		//从容器中获取bean
		GreetServiceImp service=bean.getBean("greetservice", GreetServiceImp.class);
		//执行操作
		service.sayGreeting();
	}
	/**
	 * beanfactory实现,从classpath获取资源
	 */
	@Test
	public void beanFactoryBaseOnClassPath(){
		//准备配置文件,从当前类加载路径中获取配置文件
		Resource resource=new ClassPathResource("resource/chapter01.xml");
		//初始化容器
		BeanFactory bean=new XmlBeanFactory(resource);
		//从容器中获取bean
		GreetServiceImp service=bean.getBean("greetservice", GreetServiceImp.class);
		//执行操作
		service.sayGreeting();
	}
	/**
	 * ApplicationContext实现,从文件系统中获取资源
	 */
	@Test
	public void applicationContextBaseOnFileSystem(){
		//准备配置文件,从文件系统中获取配置文件,默认为相当路径,也可以写绝对路径
		BeanFactory bean=new FileSystemXmlApplicationContext("bin/resource/chapter01.xml");
		//从容器中获取bean
		GreetServiceImp service=bean.getBean("greetservice", GreetServiceImp.class);
		//执行操作
		service.sayGreeting();
	}
	
	/**
	 * ApplicationContext实现,从ClassPath中获取资源
	 */
	@Test
	public void applicationContextBaseOnClassPath(){
		//准备配置文件,从当前类加载路径中获取配置文件
		BeanFactory bean=new ClassPathXmlApplicationContext("resource/chapter01.xml");
		//从容器中获取bean
		GreetServiceImp service=bean.getBean("greetservice",GreetServiceImp.class);
		//执行操作
		service.sayGreeting();
	}
}
 

      上述代码是IOC实现的常用几种方法。

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics