Spring源码分析系列(一)IOC容器的设计与实现(2)高级容器的实现

上期文章:
Spring源码分析系列(一)IOC容器的设计与实现(1)基础容器的实现

上一章我们讲了以xmlBeanFactory的方式实现的基础IOC容器,这回我们接着讲IOC容器的高级实现。首先先看下ApplicationContext的接口设计路线,他在继承了BeanFactory的基础上还集成了国际化接口MessageSource、资源获取ResourceLoader、事件机制ApplicationEventPublisher等,通过他们来实现基础容器做不到的高级特性。


applicationContext接口设计路线

下面我们来看三段代码

//通过实际路径
String xmlPath = "WebContent/WEB-INF/config/base/applicationContext.xml";
    ApplicationContext ac = new FileSystemXmlApplicationContext(xmlPath);
    user = ac.getBean(test.class);
//通过根目录默认
ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
    user = ac.getBean(LsjmUserServiceImpl.class);
//通过xmlwebApplication
ServletContext servletContext =request.getSession().getServletContext();
ApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(servletContext);

这三种方式都可以获取到ApplicationContext对象,我们以FileSystemXmlApplicationContext举例。


FileSystemXmlApplicationContext整体结构.png

首先是初始化,执行构造方法,然后按照继承链进行父类初始化,最后refresh启动。
继承链上的父类包括:
AbstractXmlApplicationContext
AbstractRefreshableConfigApplicationContext
AbstractRefreshableApplicationContext
AbstractApplicationContext

 public FileSystemXmlApplicationContext(String configLocation) throws BeansException {
        this(new String[]{configLocation}, true, (ApplicationContext)null);
    }
public FileSystemXmlApplicationContext(String[] configLocations, boolean refresh, @Nullable ApplicationContext parent) throws BeansException {
        super(parent);
        this.setConfigLocations(configLocations);
        if (refresh) {
            this.refresh();
        }
    }

我们继续跟进refresh方法,在AbstractApplicationContext类中看到了他的实现,这里是容器的准备阶段,调用了ConfigurableListableBeanFactory接口,那谁是他的实现类呢?我们接着往下走。

public void refresh() throws BeansException, IllegalStateException {
        synchronized(this.startupShutdownMonitor) {
            this.prepareRefresh();
            ConfigurableListableBeanFactory beanFactory = this.obtainFreshBeanFactory();
            this.prepareBeanFactory(beanFactory);
        }
    }
protected ConfigurableListableBeanFactory obtainFreshBeanFactory() {
        this.refreshBeanFactory();
        return this.getBeanFactory();
    }

我们通过refreshBeanFactory继续执行,通过AbstractApplicationContext的继承体系,我们在AbstractRefreshableApplicationContext类中找到了他的实现方法。看他的逻辑,先容器校验是否创建,存在就销毁。然后我们还是通过构建实体类DefaultListableBeanFactory来实现容器,这个我们后续会讲解如何实现。

通过这段代码,我们发现:
无论是BeanFactory体系的基础容器,还是ApplicationContext体系的高级容器,我们是要通过DefaultListableBeanFactory来实现。

  protected final void refreshBeanFactory() throws Exception {
        if (this.hasBeanFactory()) {
            this.destroyBeans();
            this.closeBeanFactory();
        }
            DefaultListableBeanFactory beanFactory = this.createBeanFactory();
            beanFactory.setSerializationId(this.getId());
            this.customizeBeanFactory(beanFactory);
            this.loadBeanDefinitions(beanFactory);
            synchronized(this.beanFactoryMonitor) {
                this.beanFactory = beanFactory;
            }
    }
ConfigurableListableBeanFactory唯一实现类就是DefaultListableBeanFactory.png

根据基础容器的构建方式可知,要实现容器首先要将xml中的结构,解析出来装载到CurrentHashMap<BeanDefinition>对象中,所以这里的思路是如何定位xml。追踪抽象方法this.loadBeanDefinitions(beanFactory),我们找到了他的实现类AbstractXmlApplicationContext,这里定义了两种资源类型的加载方式我们按照String类型继续跟代码。

    protected void loadBeanDefinitions(XmlBeanDefinitionReader reader) throws BeansException, IOException {
        Resource[] configResources = this.getConfigResources();
        if (configResources != null) {
            reader.loadBeanDefinitions(configResources);
        }
        String[] configLocations = this.getConfigLocations();
        if (configLocations != null) {
            reader.loadBeanDefinitions(configLocations);
        }
    }

进入到AbstractBeanDefinitionReader类中,然后获取资源加载器ResourceLoader根据ResourceLoader的类型不同对资源有不同的获取方法当为ResourcePatternResolver类型时,将ResourceLoader强转类型后调用getResource()方法定位资源否则,直接调用DefaultResourceLoader的getResource()方法定位资源。


    public int loadBeanDefinitions(String location, @Nullable Set<Resource> actualResources) throws BeanDefinitionStoreException {
        ResourceLoader resourceLoader = this.getResourceLoader();
        if (resourceLoader == null) {
            throw new BeanDefinitionStoreException("Cannot load bean definitions from location [" + location + "]: no ResourceLoader available");
        } else {
            int count;
            if (resourceLoader instanceof ResourcePatternResolver) {
                    Resource[] resources = ((ResourcePatternResolver)resourceLoader).getResources(location);
                    count = this.loadBeanDefinitions(resources);
                    if (actualResources != null) {
                        Collections.addAll(actualResources, resources);
                    }
                    return count;
            } else {
                Resource resource = resourceLoader.getResource(location);
                count = this.loadBeanDefinitions((Resource)resource);
                if (actualResources != null) {
                    actualResources.add(resource);
                }
                }
                return count;
            }
        }
    }

进入到DefaultResourceLoader类,getResource里会判断传入的路径类型,是根目录标识的定位,还是Url标识的定位,还是是实际路径标识的定位。FileSystemXmlApplicationContext属于实际路径所以我们继续执行getResourceByPath方法。

public Resource getResource(String location) {
        Assert.notNull(location, "Location must not be null");
        Iterator var2 = this.protocolResolvers.iterator();
        Resource resource;
        do {
            if (!var2.hasNext()) {
                if (location.startsWith("/")) {
                    return this.getResourceByPath(location);
                }
                if (location.startsWith("classpath:")) {
                    return new ClassPathResource(location.substring("classpath:".length()), this.getClassLoader());
                }
                try {
                    URL url = new URL(location);
                    return (Resource)(ResourceUtils.isFileURL(url) ? new FileUrlResource(url) : new UrlResource(url));
                } catch (MalformedURLException var5) {
                    return this.getResourceByPath(location);
                }
            }
            ProtocolResolver protocolResolver = (ProtocolResolver)var2.next();
            resource = protocolResolver.resolve(location, this);
        } while(resource == null);
        return resource;
    }

getResourceByPath的实现类就在我们最开始的入口FileSystemXmlApplicationContext类中,这个方法会返回一个FileSystemResource对象,通过这个对象Spring就可以进行I/O操作完成BeanDefinition定位。

 protected Resource getResourceByPath(String path) {
        if (path.startsWith("/")) {
            path = path.substring(1);
        }
        return new FileSystemResource(path);
    }

经过上述操作我们完成了配置资源的定位工作,接下就是BeanDefinition的载入和解析。
让我们回到AbstractBeanDefinitionReader类中的loadBeanDefinitions(String , Set<Resource>)方法上,getResource使我们获得了资源的坐标,然后我们执行this.loadBeanDefinitions,这里开始正式开始BeanDefinition的载入和解析。

 Resource resource = resourceLoader.getResource(location);
 count = this.loadBeanDefinitions((Resource)resource);

继续追踪代码在BeanDefinitionReader接口中我们按照xml解析的方式选择XmlBeanDefinitionReader作为实现类,这里将resource对象转换为流并通过doLoadBeanDefinitions方法进行读取。具体的读取过程都在doLoadDocument中,最后将读取的结果放入Document对象中并开始注册。

public int loadBeanDefinitions(EncodedResource encodedResource) {
InputStream inputStream = encodedResource.getResource().getInputStream();
InputSource inputSource = new InputSource(inputStream);
    if (encodedResource.getEncoding() != null) {
      inputSource.setEncoding(encodedResource.getEncoding());
    }
    var5 = this.doLoadBeanDefinitions(inputSource, encodedResource.getResource());
}

  protected int doLoadBeanDefinitions(InputSource inputSource, Resource resource) {
          // 具体的读取过程都在doLoadDocument中
            Document doc = this.doLoadDocument(inputSource, resource);
            int count = this.registerBeanDefinitions(doc, resource);
            return count;
    }

我们继续跟进代码registerBeanDefinitions,我们发现registerBeanDefinitions真正的实现类又回到了我们在注册基础容器时用到的DefaultBeanDefinitionDocumentReader类。后续的注册过程就不在叙述,参考基础容器的实现,高级容器与基础容器的的核心本质上都是一套东西。
最后关于AppliicationContext的高级特性部分,我们往回找,找到AbstractApplicationContext看refresh方法。在准备好基础的IOC容器后,我们开始逐步注册那些高级特性。

   public void refresh() throws BeansException, IllegalStateException {
        synchronized(this.startupShutdownMonitor) {
            // 启动注册ioc容器
            this.prepareRefresh();
            ConfigurableListableBeanFactory beanFactory = this.obtainFreshBeanFactory();
            this.prepareBeanFactory(beanFactory);

                
                this.postProcessBeanFactory(beanFactory);
                this.invokeBeanFactoryPostProcessors(beanFactory);
                this.registerBeanPostProcessors(beanFactory);
                // 初始化消息
                this.initMessageSource();
                // 初始化时间机制
                this.initApplicationEventMulticaster();
                this.onRefresh();
                //注册监听器
                this.registerListeners();
                this.finishBeanFactoryInitialization(beanFactory);
                this.finishRefresh();
        }
    }
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
禁止转载,如需转载请通过简信或评论联系作者。
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,384评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,845评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,148评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,640评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,731评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,712评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,703评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,473评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,915评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,227评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,384评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,063评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,706评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,302评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,531评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,321评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,248评论 2 352