国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

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

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

2019-11-11 04:50:19
字體:
來源:轉載
供稿:網友

關于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);      } 
上一篇:delegate vs event

下一篇:KMP探索

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 九龙县| 阳城县| 临澧县| 嘉峪关市| 天台县| 东平县| 太仆寺旗| 屏东县| 洪湖市| 南陵县| 扶风县| 双流县| 屯留县| 德化县| 舟山市| 乌鲁木齐县| 清苑县| 全椒县| 永宁县| 皮山县| 玉树县| 定襄县| 常宁市| 阿坝| 清丰县| 漾濞| 扶余县| 孟连| 沽源县| 大姚县| 和平区| 平武县| 澜沧| 宁强县| 共和县| 西藏| 文水县| 乐陵市| 辽宁省| 郁南县| 枣强县|