spring_03ApplicationContext三种经常用到的实现

Posted 爱华顿g

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring_03ApplicationContext三种经常用到的实现相关的知识,希望对你有一定的参考价值。

 

  1.ClassPathXmlApplicationContext从类路径加载       

 ApplicationContext ac=new ClassPathXmlApplicationContext("beans.xml");

 

  2.FileSystemXmlApplicationContext从文件系统加载

ApplicationContext ac=new FileSystemXmlApplicationContext("beans.xml");

 

  3.XmlWebApplicationContext从web系统加载,适合进行web开发时使用

ApplicationContext ac=new XmlWebApplicationContext("beans.xml");

 

以上是关于spring_03ApplicationContext三种经常用到的实现的主要内容,如果未能解决你的问题,请参考以下文章

Spring + Hibernate + JPA [关闭]

Spring Web 项目Junit测试报错问题

Spring 类构造器初始化实例

ContextLoader和ContextLoaderListener

ContextLoader和ContextLoaderListener

面试阿里,字节,美团必看的Spring的Bean管理详解