Spring源码解析-applicationContext

Spring源码解析-applicationContext

ID:37898076

大小:58.00 KB

页数:9页

时间:2019-06-02

Spring源码解析-applicationContext_第1页
Spring源码解析-applicationContext_第2页
Spring源码解析-applicationContext_第3页
Spring源码解析-applicationContext_第4页
Spring源码解析-applicationContext_第5页
资源描述:

《Spring源码解析-applicationContext》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、Spring源码解析-applicationContextDemouml类图ApplicationContextApplicationListener源码解析主流程obtainFreshBeanFactoryprepareBeanFactoryinvokeBeanFactoryPostProcessorsregisterBeanPostProcessorsregisterListenersfinishRefresh总结在已经有BeanFactory可以完成Ioc功能情况下,spring又提供了ApplicationContext,why

2、?可以简单理解BeanFactory为可用,ApplicationContext封装了Beanfactory,提供了上下文、国际化、监听等更多的可选功能,让其能用,使用时,优先使用ApplicationContext。Demo跟beanfactory的demo唯一不同的就是://BeanFactoryctx=newXmlBeanFactory(newClassPathResource("spring.xml"));ApplicationContextctx=newClassPathXmlApplicationContext("sprin

3、g.xml");uml类图ApplicationContextapplicationContextApplicationListenerApplicationListener源码解析主流程//ClassPathXmlApplicationContextpublicClassPathXmlApplicationContext(String[]configLocations,booleanrefresh)throwsBeansException{this(configLocations,refresh,null);}publicClassP

4、athXmlApplicationContext(String[]configLocations,booleanrefresh,ApplicationContextparent)throwsBeansException{super(parent);//设置configLocationssetConfigLocations(configLocations);if(refresh){refresh();}}//AbstractApplicationContextpublicvoidrefresh()throwsBeansException,

5、IllegalStateException{synchronized(this.startupShutdownMonitor){//设置和校验系统变量和环境变量的值prepareRefresh();//获取beanFactoryConfigurableListableBeanFactorybeanFactory=obtainFreshBeanFactory();//配置BeanFactory上下文prepareBeanFactory(beanFactory);try{//子类扩展,beanFactory的后置处理postProcessB

6、eanFactory(beanFactory);//调用BeanFactory的后置处理器invokeBeanFactoryPostProcessors(beanFactory);//注册beanprocessors,只是注册,bean创建时调用.registerBeanPostProcessors(beanFactory);//国际化initMessageSource();//初始化监听的Multicaster,有自定义就是用自定义,没有就使用默认SimpleApplicationEventMulticasterinitApplica

7、tionEventMulticaster();//子类扩展onRefresh();//注册listenregisterListeners();//实例化所有非延迟加载的bean,相当于循环调用getbeanfinishBeanFactoryInitialization(beanFactory);//完成刷新,通知LifecycleProcessor,ContextRefreshedEvent事件(这个很有用,可以监听这个事件)finishRefresh();}catch(BeansExceptionex){//Destroyalread

8、ycreatedsingletonstoavoiddanglingresources.destroyBeans();//Reset'active'flag.cancelRefresh(ex);//Propa

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。