Quantcast
Channel: CSDN博客推荐文章
Viewing all articles
Browse latest Browse all 35570

Spring容器对象(BeanFactory)

$
0
0

1、查找源文件下配置文件
   //读取配置文件
  Resource resource = new ClassPathResource("applicationContext.xml");
  //创建spring容器,对容器的对象完成实例化
  BeanFactory beanFactory = new XmlBeanFactory(resource);

  等价于

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

2、查找绝对路径下配置文件
   //绝对路径读取配置文件
  Resource resource = new FileSystemResource("E://配置文件//applicationContext.xml");
  //创建容器,完成对象实例化
  BeanFactory beanFactory = new XmlBeanFactory(resource);

  等价于

  ApplicationContext ac = new FileSystemXmlApplicationContext("E://配置文件//applicationContext.xml");

3、ApplicationContext方式:
ClassPathXmlApplicationContext(C)和FileSystemXmlApplicationContext(F)

  (1)获取路径
     F:可以加载绝对路径下配置文件
     C:可以加载相对路径下配置文件
  (2)F兼容C
     F支持ClassPath搜索器
     classpath:applicationContext.xml
  (3)spring国际化
      FileSystemXmlApplicationContext支持国际化

实际开发:我建议使用FileSystemXmlApplicationContext,查找相对路径需要添加 claspath:

作者:lirui0822 发表于2013-1-29 23:08:47 原文链接
阅读:53 评论:0 查看评论

Viewing all articles
Browse latest Browse all 35570

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>