麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 學院 > 開發設計 > 正文

Spring IOC 源碼閱讀之資源定位加載

2019-11-11 05:25:31
字體:
來源:轉載
供稿:網友

關于sPRing容器的啟動的主要的入口是AbstractapplicationContext的refresh()方法,這個方法非常重要;

[html] view plain copy public void refresh() throws BeansException, IllegalStateException {      synchronized (this.startupShutdownMonitor) {          // Prepare this context for refreshing.          prepareRefresh();            // Tell the subclass to refresh the internal bean factory.          ConfigurableListableBeanFactory beanFactory = obtainFreshBeanFactory();            // Prepare the bean factory for use in this context.          prepareBeanFactory(beanFactory);            try {              // Allows post-processing of the bean factory in context subclasses.              postProcessBeanFactory(beanFactory);                // Invoke factory processors registered as beans in the context.              invokeBeanFactoryPostProcessors(beanFactory);                // Register bean processors that intercept bean creation.              registerBeanPostProcessors(beanFactory);                // Initialize message source for this context.              initMessageSource();                // Initialize event multicaster for this context.              initApplicationEventMulticaster();                // Initialize other special beans in specific context subclasses.              onRefresh();                // Check for listener beans and register them.              registerListeners();                // Instantiate all remaining (non-lazy-init) singletons.              finishBeanFactoryInitialization(beanFactory);                // Last step: publish corresponding event.              finishRefresh();          }            catch (BeansException ex) {              // Destroy already created singletons to avoid dangling resources.              destroyBeans();                // Reset 'active' flag.              cancelRefresh(ex);                // Propagate exception to caller.              throw ex;          }      }  }        此方法中用obtainFreshBeanFactory方法間接的調用了子類(如AbstractRefreshableApplicationContext)實現的refreshBeanFctory()方法。[java] view plain copy /**      * This implementation performs an actual refresh of this context's underlying      * bean factory, shutting down the previous bean factory (if any) and      * initializing a fresh bean factory for the next phase of the context's lifecycle.      */      @Override      protected final void refreshBeanFactory() throws BeansException {          if (hasBeanFactory()) {              destroyBeans();              closeBeanFactory();          }          try {              DefaultListableBeanFactory beanFactory = createBeanFactory();              beanFactory.setSerializationId(getId());              customizeBeanFactory(beanFactory);              loadBeanDefinitions(beanFactory);              synchronized (this.beanFactoryMonitor) {                  this.beanFactory = beanFactory;              }          }          catch (IOException ex) {              throw new ApplicationContextException("I/O error parsing bean definition source for " + getDisplayName(), ex);          }      }       refreshBeanFctory()首先實例化一個BeanFactory(DefaultListableBeanFactory),然后調用抽象方法loadBeanDifinition(DefaultListableBeanFactory beanFactory),此方法由其子類實現,比如AbstractxmlApplicationContext、XmlWebApplicationContext等。[java] view plain copy protected void loadBeanDefinitions(DefaultListableBeanFactory beanFactory) throws BeansException, IOException {      // Create a new XmlBeanDefinitionReader for the given BeanFactory.      XmlBeanDefinitionReader beanDefinitionReader = new XmlBeanDefinitionReader(beanFactory);        // Configure the bean definition reader with this context's      // resource loading environment.      beanDefinitionReader.setEnvironment(this.getEnvironment());      beanDefinitionReader.setResourceLoader(this);      beanDefinitionReader.setEntityResolver(new ResourceEntityResolver(this));        // Allow a subclass to provide custom initialization of the reader,      // then proceed with actually loading the bean definitions.      initBeanDefinitionReader(beanDefinitionReader);      loadBeanDefinitions(beanDefinitionReader);  }  在這個方法中,做了以下事情:1、首先創建了一個BeanDefinitionReader的實例(XmlBeanDefinitionReader), [java] view plain copy XmlBeanDefinitionReader beanDefinitionReader = new XmlBeanDefinitionReader(beanFactory);  2、設置ResorceLoader為ApplicationContext實例本身(實際上是繼承了DefaultResourceLoader,所以其實這里的ResourceLoader是DefaultResourceLoader),[java] view plain copy beanDefinitionReader.setResourceLoader(this);    3、調用loadBeanDefinitions(XmlBeanDefinitionReader reader)方法。 [java] view plain copy    protected void loadBeanDefinitions(XmlBeanDefinitionReader reader) throws BeansException, IOException {  Resource[] configResources = getConfigResources();  if (configResources != null) {      reader.loadBeanDefinitions(configResources);  }  String[] configLocations = getConfigLocations();  if (configLocations != null) {      reader.loadBeanDefinitions(configLocations);  }  這個方法調用父類AbstractRefreshableConfigApplication的getConfigLocations方法,獲取資源定義的路徑,如果不是通過構造器傳入的路徑,則調用getDefaultConfigLocations的子類實現來獲取資源定義路徑(XmlWebApplicationContext)。然后調用BeanDefinitionReader的loadBeanDefinitions(String location)方法加載資源。[java] view plain copy public int loadBeanDefinitions(String location, Set<Resource> actualResources) throws BeanDefinitionStoreException {      ResourceLoader resourceLoader = getResourceLoader();      if (resourceLoader == null) {          throw new BeanDefinitionStoreException(                  "Cannot import bean definitions from location [" + location + "]: no ResourceLoader available");      }        if (resourceLoader instanceof ResourcePatternResolver) {          // Resource pattern matching available.          try {              Resource[] resources = ((ResourcePatternResolver) resourceLoader).getResources(location);              int loadCount = loadBeanDefinitions(resources);              if (actualResources != null) {                  for (Resource resource : resources) {                      actualResources.add(resource);                  }              }              if (logger.isDebugEnabled()) {                  logger.debug("Loaded " + loadCount + " bean definitions from location pattern [" + location + "]");              }              return loadCount;          }          catch (IOException ex) {              throw new BeanDefinitionStoreException(                      "Could not resolve bean definition resource pattern [" + location + "]", ex);          }      }      else {          // Can only load single resources by absolute URL.只能加載一個絕對路徑的URL資源          Resource resource = resourceLoader.getResource(location);          int loadCount = loadBeanDefinitions(resource);          if (actualResources != null) {              actualResources.add(resource);          }          if (logger.isDebugEnabled()) {              logger.debug("Loaded " + loadCount + " bean definitions from location [" + location + "]");          }          return loadCount;      }  }  在BeanDefinitionReader的loadBeanDefinitions的方法中,首先獲取前面setter的ResourceLoader對象,調用ResourseLoader對象的getResources(location)方法(這個方法會根據location判斷是否是classpathResource或者URL,如果都不是調用getResourceByPath(由子類FileSystemXmlApplicationContext或AbstractRefreshableWebApplicationContext等實現返回FileSystemResource或者ServletContextResource))獲取具體的資源Resource。[java] view plain copy public Resource getResource(String location) {      Assert.notNull(location, "Location must not be null");      if (location.startsWith(CLASSPATH_URL_PREFIX)) {          return new ClassPathResource(location.substring(CLASSPATH_URL_PREFIX.length()), getClassLoader());      }      else {          try {              // Try to parse the location as a URL...              URL url = new URL(location);              return new UrlResource(url);          }          catch (MalformedURLException ex) {              // No URL -> resolve as resource path.              return getResourceByPath(location);          }      }  }  FileSystemXmlApplication:[java] view plain copy        protected Resource getResourceByPath(String path) {  if (path != null && path.startsWith("/")) {      path = path.substring(1);  }  return new FileSystemResource(path);  AbstractRefreshableWebApplicationContext:[java] view plain copy protected Resource getResourceByPath(String path) {          return new ServletContextResource(this.servletContext, path);      } 
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 一级毛片在线免费播放 | 日本成人午夜 | 久久亚洲成人网 | 男男啪羞羞视频网站 | 欧美成人小视频 | 国产精品区一区二区三区 | a一级黄| 欧美激情综合在线 | lutube成人福利在线观看污 | 免费看成人av | 亚洲无限资源 | 亚洲精品永久视频 | 一级网站| 8x成人在线电影 | 亚洲精品 欧美 | 国产精品一区在线观看 | 午夜在线观看视频网站 | 欧美成人免费 | 黄色特级 | 最新黄色电影网站 | 日韩中文字幕一区二区三区 | 欧美一级鲁丝片免费看 | 狠狠操夜夜爱 | 久久精品网 | 中文字幕视频在线播放 | 88xx成人精品视频 | 欧美精品免费一区二区三区 | 中文字幕视频在线播放 | 97伦理| 黄色av电影在线 | 91成人在线免费视频 | 午夜a狂野欧美一区二区 | 国产美女视频一区二区三区 | 免费午夜视频在线观看 | 中文字幕精品在线播放 | 国产精品一区在线观看 | 国产精品午夜性视频 | 欧美中文日韩 | 成人偷拍片视频在线观看 | julieann艳星激情办公室 | 免费视频aaa |