快速业务通道

Spring源代码解析(一):IOC容器 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-18
Reader来使用了      int loadCount = loadBeanDefinitions(resource);      return loadCount;    } }

当我们通过ResourceLoader来载入资源,别忘了了我们的GenericApplicationContext也实现了ResourceLoader接口:

代码

public class GenericApplicationContext extends AbstractApplicationContext implements BeanDefinitionRegistry {    public Resource getResource(String location) {      //这里调用当前的loader也就是DefaultResourceLoader来完成载入      if (this.resourceLoader != null) {        return this.resourceLoader.getResource(location);      }      return super.getResource(location);    } ....... }

而我们的FileSystemXmlApplicationContext就是一个DefaultResourceLoader - GenericApplicationContext()通过DefaultResourceLoader:

代码

public Resource getResource(String location) {    //如果是类路径的方式,那需要使用ClassPathResource来得到bean文件的资源对象    if (location.startsWith(CLASSPATH_URL_PREFIX)) {      return new ClassPathResource(location.substring(CLASSPATH_URL_PREFIX.length()), getClassLoader());    }    else {      try {        // 如果是URL方式,使用UrlResource作为bean文件的资源对象        URL url = new URL(location);        return new UrlResource(url);      }      catch (MalformedURLException ex) {        // 如果都不是,那我们只能委托给子类由子类来决定使用什么样的资源对象了        return getResourceByPath(location);      }    } }

Spring源代码解析(一):IOC容器(5)

时间:2011-03-29

我们的FileSystemXmlApplicationContext本身就是是DefaultResourceLoader的实现类,他实现了以下的接口:

代码

protected Resource getResourceByPath(String path) {    if (path != null && path.startsWith("/")) {      path = path.substring(1);    }    //这里使用文件系统资源对象来定义bean文件    return new FileSystemResource(path); }

这样代码就回到了FileSystemXmlApplicationContext中来,他提供了FileSystemResource来完成从文件系统得到配置文件的资源定义。这样,就可以从文件系统路径上对IOC配置文件进行加载 - 当然我们可以按照这个逻辑从任何地方加载,在Spring中我们看到它提供的各种资源抽象,比如ClassPathResource, URLResource,FileSystemResource等来供我们使用。上面我们看到的是定位Resource的一个过程,而这只是加载过程的一部分 - 我们回到AbstractBeanDefinitionReaderz中的loadDefinitions(resource)来看看得到代表bean文件的资源定义以后的载入过程,默认的我们使用XmlBeanDefinitionReader:

代码

public int loadBeanDefinitions(EncodedResource encodedResource) throws BeanDefinitionStoreException {    .......    try {      //这里通过Resource得到InputStream的IO流      InputStream inputStream = encodedResource.getResource().getInputStream();      try {        //从InputStream中得到XML的解析源        InputSource inputSource = new InputSource(inputStream);        if (encodedResource.getEncoding() != null) {          inputSource.setEncoding(encodedResource.getEncoding());        }        //这里是具体的解析和注册过程        return

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号