refresh()该方法是SpringBean加载的核心,它是ClassPathXmlApplicationContext的父类AbstractApplicationContext的一个方法,顾名思义,用于刷新整个Spring上下文信息,定义了整个Spring上下文加载的流程。publicvoidrefresh()throwsBeansException,IllegalStateException{synchronized(this.startupShutdownMonitor){//准备刷新上下文环境this.prepareRefresh();//初始化BeanFactory,并进行XML文件读取...
继续阅读 >