Spring源码学习笔记(十三)、finishRefresh

得意时要看淡,失意时要看开。不论得意失意,切莫大意;不论成功失败,切莫止步。志得意满时,需要的是淡然,给自己留一条退路;失意落魄时,需要的是泰然,给自己觅一条出路Spring源码学习笔记(十三)、finishRefresh,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com,来源:原文

一、方法功能概述

// 最后一步,完成刷新
finishRefresh();

最后一步,完成刷新

  • 清理缓存资源

  • 初始化lifecycleProcessor,默认是DefaultLifecycleProcessor

  • 触发DefaultLifecycleProcessor的onRefresh方法

  • 发布事件ContextRefreshedEvent

  • 注册ApplicationContext到LiveBeansView内部的applicationContexts中

二、整体代码展示

//AbstractApplicationContext
/**
 * Finish the refresh of this context, invoking the LifecycleProcessor's
 * onRefresh() method and publishing the
 * {@link org.springframework.context.event.ContextRefreshedEvent}.
 * 完成此上下文的刷新,调用LifecycleProcessor的onRefresh方法并发布事件ContextRefreshedEvent
 */
protected void finishRefresh() {
    // 清理缓存资源
    clearResourceCaches();

    // 初始化lifecycleProcessor,默认是DefaultLifecycleProcessor
    initLifecycleProcessor();

    // 触发DefaultLifecycleProcessor的onRefresh方法
    getLifecycleProcessor().onRefresh();

    // 发布事件ContextRefreshedEvent
    publishEvent(new ContextRefreshedEvent(this));

    // 注册ApplicationContext到LiveBeansView内部的applicationContexts中
    LiveBeansView.registerApplicationContext(this);
}

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/154509.html

(0)
飞熊的头像飞熊bm

相关推荐

发表回复

登录后才能评论
极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!