深入Spring之IOC之載入BeanDefinition

来源:https://www.cnblogs.com/i-code/archive/2020/05/18/12913661.html
-Advertisement-
Play Games

本文主要分析 中 的載入,對於其解析我們在後面的文章中專門分析。 是屬於 模塊的,它是對 spring bean 的統一抽象描述定義介面,我們知道在spring中定義bean的方式有很多種,如XML、註解以及自定義標簽,同事Bean的類型也有很多種,如常見的工廠Bean、自定義對象、Advisor等 ...


top-10-reasons-to-use-spring-framework-1.jpg
本文主要分析 springBeanDefinition 的載入,對於其解析我們在後面的文章中專門分析。
BeanDefinition 是屬於 Spring Bean 模塊的,它是對 spring bean 的統一抽象描述定義介面,我們知道在spring中定義bean的方式有很多種,如XML、註解以及自定義標簽,同事Bean的類型也有很多種,如常見的工廠Bean、自定義對象、Advisor等等,我們在分析載入BeanDefinition之前,首先來瞭解它的定義和註冊設計。
beandefinition結構定義.png
上面類圖我們做一個簡單介紹,具體詳細介紹在後面的相關文章說明

  • AliasRegistry 為 Bean註冊一個別名的頂級介面

  • BeanDefinitionRegistry 主要用來把bean的描述信息註冊到容器中,spring在註冊bean時一般是獲取到bean後通過 BeanDefinitionRegistry 來註冊噹噹前的 BeanFactory

  • BeanDefinition 是用來定義描述 Bean的名字、作用域、角色、依賴、懶載入等基礎信息,以及包含與spring容器運行和管理Bean信息相關的屬性。spring中通過它實現了對bean的定製化統一,這也是一個核心介面層

  • AnnotatedBeanDefinition 是一個介面,繼承了 BeanDefinition , 對其做了一定的擴展,主要用來描述註解Bean的定義信息

  • AttributeAccessor 主要用來設置 Bean配置信息中的屬性和屬性值的介面,實現key-value的映射關係

  • AbstractBeanDefinition 是對 BeanDefintion 的一個抽象化實現,是一個模板,具體的詳細實現交給子類

2. BeanDefinition

ClassPathResource resource = new ClassPathResource("bean.xml"); // <1>
DefaultListableBeanFactory factory = new DefaultListableBeanFactory(); // <2>
XmlBeanDefinitionReader reader = new XmlBeanDefinitionReader(factory); // <3>
reader.loadBeanDefinitions(resource);

上面這段代碼是 spring 中從資源的定位到載入過程,我們可以簡單分析一下:

  1. 通過 ClassPathResource 進行資源的定位,獲取到資源
  2. 獲取 BeanFactory ,即上下文
  3. 通過工廠創建一個特定的 XmlBeanDefinitionReader 對象,該 Reader 是一個資源解析器, 實現了 BeanDefinitionReader 介面
  4. 裝載資源

整個過程分為三個大步驟,示意圖:
bean三部.png
我們文章主要分析的就是第二步,裝載的過程,

3.loadBeanDefinitions

資源的定位我們之前文章分析過了,不在闡述,這裡我們關心 reader.loadBeanDefinitions(resource); 這句的具體實現,
通過代碼追蹤我們可以知道方法 #loadBeanDefinitions(...) 是定義在 BeanDefinitionReader 中的,而他的具體實現是在 XmlBeanDefinitionReader 類中,代碼如下:

/**
	 * 從指定的xml文件中載入bean的定義
	 * Load bean definitions from the specified XML file.
	 * @param resource the resource descriptor for the XML file
	 * @return the number of bean definitions found
	 * @throws BeanDefinitionStoreException in case of loading or parsing errors
	 */
	@Override
	public int loadBeanDefinitions(Resource resource) throws BeanDefinitionStoreException {
		//調用私有方法處理  這裡將resource進行了編碼處理,保證瞭解析的正確性
		return loadBeanDefinitions(new EncodedResource(resource));
	}
	/**
	 * 裝載bean定義的真實處理方法
	 * Load bean definitions from the specified XML file.
	 * @param encodedResource the resource descriptor for the XML file,
	 * allowing to specify an encoding to use for parsing the file
	 * @return the number of bean definitions found
	 * @throws BeanDefinitionStoreException in case of loading or parsing errors
	 */
	public int loadBeanDefinitions(EncodedResource encodedResource) throws BeanDefinitionStoreException {
		//1.對資源判空
		Assert.notNull(encodedResource, "EncodedResource must not be null");
		if (logger.isTraceEnabled()) {
			logger.trace("Loading XML bean definitions from " + encodedResource);
		}
		//2.獲取當前線程中的 EncodedResource 集合  -> 已經載入過的資源
		Set<EncodedResource> currentResources = this.resourcesCurrentlyBeingLoaded.get();
		//3.若當前已載入資源為空,則創建並添加
		if (currentResources == null) {
			currentResources = new HashSet<>(4);
			this.resourcesCurrentlyBeingLoaded.set(currentResources);
		}
		//4.添加資源到集合如果已載入資源中存在 則拋出異常
		if (!currentResources.add(encodedResource)) {
			throw new BeanDefinitionStoreException(
					"Detected cyclic loading of " + encodedResource + " - check your import definitions!");
		}
		//5.獲取 encodedResource 中的 Resource ,在獲取 intputSteram 對象
		try (InputStream inputStream = encodedResource.getResource().getInputStream()) {
			InputSource inputSource = new InputSource(inputStream);
			if (encodedResource.getEncoding() != null) {
				inputSource.setEncoding(encodedResource.getEncoding());
			}
			//6. 真實執行載入beanDefinition業務邏輯的方法
			return doLoadBeanDefinitions(inputSource, encodedResource.getResource());
		}
		catch (IOException ex) {
			throw new BeanDefinitionStoreException(
					"IOException parsing XML document from " + encodedResource.getResource(), ex);
		}
		finally {
			//7.從已載入集合中去除資源
			currentResources.remove(encodedResource);
			if (currentResources.isEmpty()) {
				this.resourcesCurrentlyBeingLoaded.remove();
			}
		}
	}
  • 通過 resourcesCurrentlyBeingLoaded.get() 代碼,來獲取已經載入過的資源,然後將 encodedResource 加入其中,如果 resourcesCurrentlyBeingLoaded 中已經存在該資源,則拋出 BeanDefinitionStoreException 異常。

  • 為什麼需要這麼做呢?答案在 "Detected cyclic loading" ,避免一個 EncodedResource 在載入時,還沒載入完成,又載入自身,從而導致死迴圈。也因此,,當一個 EncodedResource 載入完成後,需要從緩存中剔除。

  • encodedResource 獲取封裝的 Resource 資源,並從 Resource 中獲取相應的 InputStream ,然後將 InputStream 封裝為 InputSource ,最後調用 #doLoadBeanDefinitions(InputSource inputSource, Resource resource) 方法,執行載入 BeanDefinition 的真正邏輯

protected int doLoadBeanDefinitions(InputSource inputSource, Resource resource)
			throws BeanDefinitionStoreException {
		try {
			//1. 獲取到 Document 實例
			Document doc = doLoadDocument(inputSource, resource);
			//2. 註冊bean實列,通過document
			int count = registerBeanDefinitions(doc, resource);
			if (logger.isDebugEnabled()) {
				logger.debug("Loaded " + count + " bean definitions from " + resource);
			}
			return count;
		}
		catch (BeanDefinitionStoreException ex) {
			throw ex;
		}
		catch (SAXParseException ex) {
			throw new XmlBeanDefinitionStoreException(resource.getDescription(),
					"Line " + ex.getLineNumber() + " in XML document from " + resource + " is invalid", ex);
		}
		catch (SAXException ex) {
			throw new XmlBeanDefinitionStoreException(resource.getDescription(),
					"XML document from " + resource + " is invalid", ex);
		}
		catch (ParserConfigurationException ex) {
			throw new BeanDefinitionStoreException(resource.getDescription(),
					"Parser configuration exception parsing XML from " + resource, ex);
		}
		catch (IOException ex) {
			throw new BeanDefinitionStoreException(resource.getDescription(),
					"IOException parsing XML document from " + resource, ex);
		}
		catch (Throwable ex) {
			throw new BeanDefinitionStoreException(resource.getDescription(),
					"Unexpected exception parsing XML document from " + resource, ex);
		}
	}

上面 #registerBeanDefinitions(...) 方法是 beanDefinition 的具體載入過程, #doLoadDocument(...) 是解析 document 的方法內部包含 spring 的驗證模型與 document 解析兩塊,這些我們在後面專門進行分析

本文由AnonyStar 發佈,可轉載但需聲明原文出處。
仰慕「優雅編碼的藝術」 堅信熟能生巧,努力改變人生
歡迎關註微信公賬號 :雲棲簡碼 獲取更多優質文章
更多文章關註筆者博客 :雲棲簡碼


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 使用CLion替換VSCode,開發 chromium kernel(for Linux) VSCode 不適合開發像chromium 這樣的巨型c++工程,Microsoft的cpptools和mono(.net移植,被VScode用作來寫code intellisense)存在的嚴重的memor ...
  • 1. 單向一對多配置 單向一對多使用@OneToMany標簽進行配置,在一方有一個集合屬性與多方進行關聯,集合可以是List或者Set,區別是List是有序、Set是無序不重覆。 對應在一方配置@OneToMany: /** * 單向一對多:使用JPA配置 */ @Entity @Table(nam ...
  • 一、寫在開頭 無聊寫寫。最近學習做python GUI, 感覺比網頁落後好多。我只是為了完成老師佈置的任務, 做一個配合ZBar掃描條形碼的小程式, 不打算過多深究二維碼什麼的。由於pyqt5貌似不是很火爆, 沒多少成系統的教程。我能找到的就是 "http://code.py40.com/pyqt5 ...
  • 一、IO與Properties的聯合應用 1.Properties解析(可以解析unicode碼) package com.bjpowernode.java_learning; import java.util.*; import java.io.*; public class D116_1_Pro ...
  • 時不時地我們需要導出一些數據用作備份、查看報表等,如果用 導出會非常慢。而用 ,則速度非常快。 準備 執行文件 : sql set colsep , set feedback off set heading off set newp none set pagesize 0 set linesize ...
  • 導入配置 如何優雅的導入scrapy中settings.py的配置參數呢?總不能用 吧,或者 吧。這看起來一點逼格都沒有。 scrapy提供了導入設置的方法:from_crawler 接著,只要在__init__接收這些參數就可以了。 而在一些官方的組件的源碼中會這樣使用,不過這看起來有點多此一舉 ...
  • "這篇博客" 說了怎麼去hook微信來接收好友消息和發送消息,現在就來實現一下,寫了個成品軟體 軟體下載地址:https://www.lanzous.com/ib4g30j 界面很簡單,如圖:(需要註意的是軟體只匹配微信版本2.8.0.121) 主要也就兩個功能。 1、自動聊天:使用騰訊AI開放平臺 ...
  • 歡迎關註我的公眾號“老餘筆記”,也可以訪問我的個人博客www.yuxiaoshao.cn 有需要的可以qq交流學習1316677086 或者加入我的群里交流:901648700 一起分享資源,交流學習 數據類型 數據類型就是用來聲明不同類型的變數或函數的一個廣泛的系統。變數的類型決定了變數存儲在記憶體 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...