Spring源码

public abstract class AbstractApplicationContext extends DefaultResourceLoader
implements ConfigurableApplicationContext, DisposableBean {

@Override  
    public void refresh() throws BeansException, IllegalStateException {  
        synchronized (this.startupShutdownMonitor) {  
            // Prepare this context for refreshing.  
            prepareRefresh();  
  
            // Tell the subclass to refresh the internal bean factory.  
            //主要是创建beanFactory,同时加载配置文件.xml中的beanDefinition  
            //通过String[] configLocations = getConfigLocations()获取资源路径,然后加载beanDefinition  

            ConfigurableListableBeanFactory beanFactory = obtainFreshBeanFactory();  
  
            // Prepare the bean factory for use in this context.  
            //给beanFactory注册一些标准组建,如ClassLoader,StandardEnvironment,BeanProcess  
            prepareBeanFactory(beanFactory);  
  
            try {  
                // Allows post-processing of the bean factory in context subclasses.  
                //提供给子类实现一些postProcess的注册,如AbstractRefreshableWebApplicationContext注册一些Servlet相关的  
                //postProcess,针对web进行生命周期管理的Scope,通过registerResolvableDependency()方法注册指定ServletRequest,HttpSession,WebRequest对象的工厂方法  

                postProcessBeanFactory(beanFactory);  
  
                // Invoke factory processors registered as beans in the context.  
                //调用所有BeanFactoryProcessor的postProcessBeanFactory()方法  
                invokeBeanFactoryPostProcessors(beanFactory);  
  
                // Register bean processors that intercept bean creation.  
                //注册BeanPostProcessor,BeanPostProcessor作用是用于拦截Bean的创建  
                registerBeanPostProcessors(beanFactory);  
  
                // Initialize message source for this context.  
                //初始化消息Bean  
                initMessageSource();  
  
                // Initialize event multicaster for this context.  
                //初始化上下文的事件多播组建,ApplicationEvent触发时由multicaster通知给ApplicationListener  
                initApplicationEventMulticaster();  
  
                // Initialize other special beans in specific context subclasses.  
                //ApplicationContext初始化一些特殊的bean  
                onRefresh();  
  
                // Check for listener beans and register them.  
                //注册事件监听器,事件监听Bean统一注册到multicaster里头,ApplicationEvent事件触发后会由multicaster广播  
                registerListeners();  
  
                // Instantiate all remaining (non-lazy-init) singletons.  
                //非延迟加载的单例Bean实例化  
                finishBeanFactoryInitialization(beanFactory);  
  
                // Last step: publish corresponding event.  
                finishRefresh();  
            }  
  
            catch (BeansException ex) {  
                logger.warn("Exception encountered during context initialization - cancelling refresh attempt", ex);  
  
                // Destroy already created singletons to avoid dangling resources.  
                destroyBeans();  
  
                // Reset 'active' flag.  
                cancelRefresh(ex);  
  
                // Propagate exception to caller.  
                throw ex;  
            }  
        }  
    }  


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值