亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

Spring IOC ( 一 ) : DefaultSingletonBeanRegi

系統 1786 0


Spring IOC ( 一 ) : DefaultSingletonBeanRegistry源碼分析

這是 DefaultSingletonBeanRegistry 類的體系結構,由一個類一個責任的原則


  • AliasRegistry : 提供別名注冊的接口
  • SingletonBeanRegistry : ?提供單例bean注冊的接口
  • ObjectFactory :?這個接口通常用于封裝一個通用的工廠,它只有一個方法getObject() ,它調用getObject()方法返回一個新的實例,一些在每次調用的目標對象(原型).
  • DisposableBean :? 接口實現為beans要破壞釋放資源。它也只有一個方法destroy(),由一個破壞一個singleton的BeanFactory調用。
  • SimpleAliasRegistry: 它簡單地實現了AliasRegistry接口。
  • DefaultSingletonBeanRegistry: 它繼承SimpleAliasRegistry類和實現了SingletonBeanRegistry接口,因此這個類可以有別名注冊的功能和單例bean注冊的功能,并且他還支持注冊DisposableBean實例;它依賴ObjectFactory接口和DisposableBean接口(關閉注冊表時調用到了destroy方法)。

      
        /**
 * 共享bean實例的通用注冊表,實現了SingletonBeanRegistry. 允許注冊表中注冊的單例應該被所有調用者共享,通過bean名稱獲得。
 * 
 * 還支持登記的DisposableBean實例,(這可能會或不能正確的注冊單例),關閉注冊表時destroyed.
 * 可以注冊bean之間的依賴關系,執行適當的關閉順序。
 * 
 * 
 * 這個類主要用作基類的BeanFactory實現, 提供基本的管理
 * singleton bean 實例功能。
 * 
 */
public class DefaultSingletonBeanRegistry extends SimpleAliasRegistry implements
		SingletonBeanRegistry {

//內部標記為一個空的單例對象: 并發 Maps( 不支持空值 )作為標志值。
	protected static final Object NULL_OBJECT = new Object();

// 日記用來記錄子類
	protected final Log logger = LogFactory.getLog(getClass());

//是存放singleton對象的緩存
	private final Map<String, Object> singletonObjects = new ConcurrentHashMap<String, Object>();

// 是存放制造singleton的工廠對象的緩存
	private final Map<String, ObjectFactory> singletonFactories = new HashMap<String, ObjectFactory>();

//是存放singletonFactory 制造出來的 singleton 的緩存
      
      
        
	private final Map<String, Object> earlySingletonObjects = new HashMap<String, Object>();
//以上三個緩存是這個類存放單例bean的主要Map
//就是單例注冊表
      
      
        
	private final Set<String> registeredSingletons = new LinkedHashSet<String>(
			16);

//目前正在創建中的單例bean的名稱的集合
      
      
        
	private final Set<String> singletonsCurrentlyInCreation = Collections
			.synchronizedSet(new HashSet<String>());

//存放異常出現的相關的原因的集合
      
      
        
	private Set<Exception> suppressedExceptions;

//標志,指示我們目前是否在銷毀單例中
      
      
        
	private boolean singletonsCurrentlyInDestruction = false;

//存放一次性bean的緩存
      
      
        
	private final Map<String, Object> disposableBeans = new LinkedHashMap<String, Object>();

//外部bean與被包含在外部bean的所有內部bean集合包含關系的緩存
	private final Map<String, Set<String>> containedBeanMap = new ConcurrentHashMap<String, Set<String>>();

//指定bean與依賴指定bean的所有bean的依賴關系的緩存
	private final Map<String, Set<String>> dependentBeanMap = new ConcurrentHashMap<String, Set<String>>();

//指定bean與創建這個bean所需要依賴的所有bean的依賴關系的緩存
      
      
        
	private final Map<String, Set<String>> dependenciesForBeanMap = new ConcurrentHashMap<String, Set<String>>();

	// SingletonBeanRegistry接口的registerSingleton方法的實現
	public void registerSingleton(String beanName, Object singletonObject)
			throws IllegalStateException {
		Assert.notNull(beanName, "'beanName' must not be null");
		synchronized (this.singletonObjects) {
			Object oldObject = this.singletonObjects.get(beanName);

      
      
        //如果singletonObjects緩存找到有指定名稱為beanName的對象,則表示該名稱已被占用
			if (oldObject != null) {
				throw new IllegalStateException("Could not register object ["
						+ singletonObject + "] under bean name '" + beanName
						+ "': there is already object [" + oldObject
						+ "] bound");
			}

      
      
        //若該名稱沒被占用,真正的注冊操作在這里實現
			addSingleton(beanName, singletonObject);
		}
	}

	
	protected void addSingleton(String beanName, Object singletonObject) {
		synchronized (this.singletonObjects) {
			// 因為singletonObjects類型是ConcurrentHashMap,并發Map不支持空值作為標志值,所以用NULL_OBJECT來代替
			this.singletonObjects.put(beanName,
					(singletonObject != null ? singletonObject : NULL_OBJECT));
			// beanName已被注冊存放在singletonObjects緩存,那么singletonFactories不應該再持有名稱為beanName的工廠
			this.singletonFactories.remove(beanName);
			// beanName已被注冊存放在singletonObjects緩存,那么earlySingletonObjects不應該再持有名稱為beanName的bean。
			this.earlySingletonObjects.remove(beanName);
			// beanName放進單例注冊表中
			this.registeredSingletons.add(beanName);
		}
	}

	/**
	 * 添加 名稱為beanName的singletonFactory對象
	 * 
	 */
	protected void addSingletonFactory(String beanName,
			ObjectFactory singletonFactory) {
		Assert.notNull(singletonFactory, "Singleton factory must not be null");
		synchronized (this.singletonObjects) {
			// 判斷singletonObjects內名字為beanName是否被占用,若沒有,進行注冊操作
			if (!this.singletonObjects.containsKey(beanName)) {
				this.singletonFactories.put(beanName, singletonFactory);
				this.earlySingletonObjects.remove(beanName);
				this.registeredSingletons.add(beanName);
			}
		}
	}

	// SingletonBeanRegistry接口的getSingleton方法的實現
	public Object getSingleton(String beanName) {
		return getSingleton(beanName, true);
	}


	protected Object getSingleton(String beanName, boolean allowEarlyReference) {
		Object singletonObject = this.singletonObjects.get(beanName);
		// 如果singletonObjects指定beanName的對象是不存在的
		if (singletonObject == null) {
			synchronized (this.singletonObjects) {
				singletonObject = this.earlySingletonObjects.get(beanName);
				// 如果earlySingletonObjects指定的beanName的對象是不存在的且allowEarlyReference是允許的
				if (singletonObject == null && allowEarlyReference) {
					ObjectFactory singletonFactory = this.singletonFactories
							.get(beanName);
					// 如果存在指定beanName的singletonFactory對象
					if (singletonFactory != null) {
						// singletonFactory創建指定的單例對象
						singletonObject = singletonFactory.getObject();
						// 這里可以看出earlySingletonObjects緩存應該是存放singletonFactory產生的singleton
						this.earlySingletonObjects.put(beanName,
								singletonObject);
						// 這里表示指定的beanName已被占用,所以要在singletonFactories移除該名稱
						this.singletonFactories.remove(beanName);
					}
				}
			}
		}
		return (singletonObject != NULL_OBJECT ? singletonObject : null);
	}


	public Object getSingleton(String beanName, ObjectFactory singletonFactory) {
		Assert.notNull(beanName, "'beanName' must not be null");
		synchronized (this.singletonObjects) {
			Object singletonObject = this.singletonObjects.get(beanName);
			// 如果singetonObjects緩存不存在名稱為beanName的對象
			if (singletonObject == null) {
				// 如果目前在銷毀singellton
				if (this.singletonsCurrentlyInDestruction) {
					throw new BeanCreationNotAllowedException(
							beanName,
							"Singleton bean creation not allowed while the singletons of this factory are in destruction "
									+ "(Do not request a bean from a BeanFactory in a destroy method implementation!)");
				}
				if (logger.isDebugEnabled()) {
					logger.debug("Creating shared instance of singleton bean '"
							+ beanName + "'");
				}
				// 單例對象創建前的回調,默認實現注冊正在創建的單例
				beforeSingletonCreation(beanName);
				// 判斷存儲異常相關原因的集合是否已存在
				boolean recordSuppressedExceptions = (this.suppressedExceptions == null);
				// 若沒有,剛創建異常集合的實例
				if (recordSuppressedExceptions) {
					this.suppressedExceptions = new LinkedHashSet<Exception>();
				}
				try {
					// 由參數給定的singletonFactory創建singleton對象,getObject方法的具體實現由ObjectFactory的子類決定
					singletonObject = singletonFactory.getObject();
				} catch (BeanCreationException ex) {
					// 如果異常被抓取,在這里將出現異常的原因拋出
					if (recordSuppressedExceptions) {
						for (Exception suppressedException : this.suppressedExceptions) {
							ex.addRelatedCause(suppressedException);
						}
					}
					throw ex;
				} finally {
					// 結束前,將異常集合銷毀掉
					if (recordSuppressedExceptions) {
						this.suppressedExceptions = null;
					}
					// 單例創建之后的回調,默認的實現標志單例不要在創建了。
					afterSingletonCreation(beanName);
				}
				// 注冊創建后的單例
				addSingleton(beanName, singletonObject);
			}
			return (singletonObject != NULL_OBJECT ? singletonObject : null);
		}
	}

	/**
	 * 注冊 發生在singeton bean 實例創建之間發生的異常 
	 */
	protected void onSuppressedException(Exception ex) {
		synchronized (this.singletonObjects) {
			if (this.suppressedExceptions != null) {
				this.suppressedExceptions.add(ex);
			}
		}
	}

	/**
	 * 移除名稱為beanName的單例,主要在四個集合中移除,
	 * 如singletonObjects,singletonFactories,earlySingletonObjects
	 * ,registeredSingletons
	 * 
	 */
	protected void removeSingleton(String beanName) {
		synchronized (this.singletonObjects) {
			this.singletonObjects.remove(beanName);
			this.singletonFactories.remove(beanName);
			this.earlySingletonObjects.remove(beanName);
			this.registeredSingletons.remove(beanName);
		}
	}

	// singletonBeanRegistry接口的containsSingleton方法實現
	public boolean containsSingleton(String beanName) {
		return (this.singletonObjects.containsKey(beanName));
	}

	// singletonBeanRegistry接口的getSingletonNames方法實現
	public String[] getSingletonNames() {
		// 對singletonObjects加鎖,可能是為了防止registeredSingletons和singletonObjects出現不一致的問題
		synchronized (this.singletonObjects) {
			return StringUtils.toStringArray(this.registeredSingletons);
		}
	}

	// singletonBeanRegistry接口的getSingletonCount方法實現
	public int getSingletonCount() {
		synchronized (this.singletonObjects) {
			return this.registeredSingletons.size();
		}
	}

	/**
	 * 單例對象創建前的回調,默認實現singletonsCurrentlyInCreation集合注冊正在創建的單例.
	 * 
	 */
	protected void beforeSingletonCreation(String beanName) {
		if (!this.singletonsCurrentlyInCreation.add(beanName)) {
			throw new BeanCurrentlyInCreationException(beanName);
		}
	}

	/**
	 * 單例創建之后的回調,默認實現singletonCurrentlyInCreation集合移除正在創建的單例
      
      
        
	 * 
	 */
	protected void afterSingletonCreation(String beanName) {
		if (!this.singletonsCurrentlyInCreation.remove(beanName)) {
			throw new IllegalStateException("Singleton '" + beanName
					+ "' isn't currently in creation");
		}
	}

	/**
	 * 返回 存放正在創建單例的集合是否包含指定名稱為beanName的單例存在
	 * 
	 */
	public final boolean isSingletonCurrentlyInCreation(String beanName) {
		return this.singletonsCurrentlyInCreation.contains(beanName);
	}

	/**
	 * 一次性bean注冊,存放在disponsableBeans集合中
	 * 
	 */
	public void registerDisposableBean(String beanName, DisposableBean bean) {
		synchronized (this.disposableBeans) {
			this.disposableBeans.put(beanName, bean);
		}
	}

	/**
	 * 注冊兩個bean之間的控制關系,例如內部bean和包含其的外部bean之間
	 * 
	 */
	public void registerContainedBean(String containedBeanName,
			String containingBeanName) {
		synchronized (this.containedBeanMap) {
			// 從containedBeanMap緩存中查找外部bean名為containingBeanName的內部bean集合
			Set<String> containedBeans = this.containedBeanMap
					.get(containingBeanName);
			// 如果沒有,剛新建一個存放內部bean的集合,并且存放在containedBeanMap緩存中
			if (containedBeans == null) {
				containedBeans = new LinkedHashSet<String>(8);
				this.containedBeanMap.put(containingBeanName, containedBeans);
			}
			// 將名為containedBeanName的內部bean存放到內部bean集合
			containedBeans.add(containedBeanName);
		}
		// 緊接著調用注冊內部bean和外部bean的依賴關系的方法
		registerDependentBean(containedBeanName, containingBeanName);
	}

	/**
	 * 注冊給定bean的一個依賴bean,給定的bean銷毀之前被銷毀。
	 * 
	 */
	public void registerDependentBean(String beanName, String dependentBeanName) {
		// 調用SimpleAliasRegistry的canonicalName方法,這方法是將參數beanName當做別名尋找到注冊名,并依此遞歸
		String canonicalName = canonicalName(beanName);
		synchronized (this.dependentBeanMap) {
			// 從dependentBeanMap緩存中找到依賴名為canonicalName這個bean的 依賴bean集合
			Set<String> dependentBeans = this.dependentBeanMap
					.get(canonicalName);
			// 如果為空,則新建一個依賴bean集合,并且存放到dependentBeanMap緩存中
			if (dependentBeans == null) {
				dependentBeans = new LinkedHashSet<String>(8);
				this.dependentBeanMap.put(canonicalName, dependentBeans);
			}
			// 依賴bean集合添加參數2指定的dependentBeanName
			dependentBeans.add(dependentBeanName);
		}
		synchronized (this.dependenciesForBeanMap) {
			// 從dependenciesForBeanMap緩存中找到dependentBeanName要依賴的所有bean集合
			Set<String> dependenciesForBean = this.dependenciesForBeanMap
					.get(dependentBeanName);
			if (dependenciesForBean == null) {
				dependenciesForBean = new LinkedHashSet<String>(8);
				this.dependenciesForBeanMap.put(dependentBeanName,
						dependenciesForBean);
			}
			dependenciesForBean.add(canonicalName);
		}
	}

	/**
	 *  確定是否還存在名為beanName的被依賴關系
	 */
	protected boolean hasDependentBean(String beanName) {
		return this.dependentBeanMap.containsKey(beanName);
	}

	/**
	 * 返回依賴于指定的bean的所有bean的名稱,如果有的話。
	 * 
	 */
	public String[] getDependentBeans(String beanName) {
		Set<String> dependentBeans = this.dependentBeanMap.get(beanName);
		if (dependentBeans == null) {
			return new String[0];
		}
		return StringUtils.toStringArray(dependentBeans);
	}

	/**
	 * 返回指定的bean依賴于所有的bean的名稱,如果有的話。
	 * 
	 */
	public String[] getDependenciesForBean(String beanName) {
		Set<String> dependenciesForBean = this.dependenciesForBeanMap
				.get(beanName);
		// 如果沒有的話返回new String[0]而不是null
		if (dependenciesForBean == null) {
			return new String[0];
		}
		return dependenciesForBean.toArray(new String[dependenciesForBean
				.size()]);
	}

	// 銷毀單例
	public void destroySingletons() {
		if (logger.isInfoEnabled()) {
			logger.info("Destroying singletons in " + this);
		}
		// 單例目前銷毀標志開始
		synchronized (this.singletonObjects) {
			this.singletonsCurrentlyInDestruction = true;
		}

		// 銷毀disponsableBeans緩存中所有單例bean
		synchronized (this.disposableBeans) {
			String[] disposableBeanNames = StringUtils
					.toStringArray(this.disposableBeans.keySet());
			for (int i = disposableBeanNames.length - 1; i >= 0; i--) {
				destroySingleton(disposableBeanNames[i]);
			}
		}

		// containedBeanMap緩存清空,dependentBeanMap緩存清空,dependenciesForBeanMap緩存清空
		this.containedBeanMap.clear();
		this.dependentBeanMap.clear();
		this.dependenciesForBeanMap.clear();

		// singeltonObjects緩存清空,singletonFactories緩存清空,earlySingletonObjects緩存清空,registeredSingletons緩存清空
		synchronized (this.singletonObjects) {
			this.singletonObjects.clear();
			this.singletonFactories.clear();
			this.earlySingletonObjects.clear();
			this.registeredSingletons.clear();
			// 單例目前正在銷毀標志為結束
			this.singletonsCurrentlyInDestruction = false;
		}
	}


	public void destroySingleton(String beanName) {
		// Remove a registered singleton of the given name, if any.
		removeSingleton(beanName);

		// Destroy the corresponding DisposableBean instance.
		DisposableBean disposableBean;
		synchronized (this.disposableBeans) {
			disposableBean = (DisposableBean) this.disposableBeans
					.remove(beanName);
		}
		destroyBean(beanName, disposableBean);
	}


	protected void destroyBean(String beanName, DisposableBean bean) {
		// Trigger destruction of dependent beans first...
		// 這段代碼告訴我們先移除要銷毀依賴bean
		Set<String> dependencies = this.dependentBeanMap.remove(beanName);
		if (dependencies != null) {
			if (logger.isDebugEnabled()) {
				logger.debug("Retrieved dependent beans for bean '" + beanName
						+ "': " + dependencies);
			}
			for (String dependentBeanName : dependencies) {
				destroySingleton(dependentBeanName);
			}
		}

		// Actually destroy the bean now...
		// 銷毀bean實例
		if (bean != null) {
			try {
				bean.destroy();
			} catch (Throwable ex) {
				logger.error("Destroy method on bean with name '" + beanName
						+ "' threw an exception", ex);
			}
		}

		// Trigger destruction of contained beans...
		// 從containedBeanMap緩存中移除要銷毀的bean,遞歸移除它的包含內部bean集合
		Set<String> containedBeans = this.containedBeanMap.remove(beanName);
		if (containedBeans != null) {
			for (String containedBeanName : containedBeans) {
				destroySingleton(containedBeanName);
			}
		}

		// Remove destroyed bean from other beans' dependencies.
		// 從其它bean的依賴bean集合中移除要銷毀的bean
		synchronized (this.dependentBeanMap) {
			for (Iterator<Map.Entry<String, Set<String>>> it = this.dependentBeanMap
					.entrySet().iterator(); it.hasNext();) {
				Map.Entry<String, Set<String>> entry = it.next();
				Set<String> dependenciesToClean = entry.getValue();
				dependenciesToClean.remove(beanName);
				if (dependenciesToClean.isEmpty()) {
					it.remove();
				}
			}
		}

		// Remove destroyed bean's prepared dependency information.
		// 最后 從dependenciesForBeanMap緩存中移除要銷毀的bean
		this.dependenciesForBeanMap.remove(beanName);
	}

	/**
	 * Expose the singleton mutex to subclasses.
	 * <p>
	 * Subclasses should synchronize on the given Object if they perform any
	 * sort of extended singleton creation phase. In particular, subclasses
	 * should <i>not</i> have their own mutexes involved in singleton creation,
	 * to avoid the potential for deadlocks in lazy-init situations.
	 */
	protected final Object getSingletonMutex() {
		return this.singletonObjects;
	}

}

      
    
?

?

Spring IOC ( 一 ) : DefaultSingletonBeanRegistry源碼分析


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 一本一本久久a久久精品综合麻豆 | 久久不卡精品 | 欧美视频在线一区 | 99综合精品久久 | 免费看国产一级特黄aa大片 | 青青青免费手机版视频在线观看 | 综合在线播放 | 最近中文日本字幕免费完整 | 奇米影视四色7777 | 奇米影 | 色网综合 | 亚洲免费一级片 | 中文字幕亚洲一区二区三区 | 四虎国产精品免费视 | 国产乱码精品一区二区三区四川 | 亚洲国产成人私人影院 | 狠狠操狠狠操狠狠操 | 人人爱天天做夜夜爽88 | 欧美一区二区三区婷婷月色 | 中文字幕一区二区三区免费看 | 日日欧美 | 久久精品免视着国产成人 | 这里只有精品99re在线 | 五月婷婷一区 | 美女天天干 | 亚洲日日干 | 国产欧美一区二区另类精品 | 欧美大片日韩精品四虎影视 | 在线日本中文字幕 | 国产亚洲欧美日韩综合综合二区 | 久久精品国产99国产精品免费看 | 精品欧美一区二区三区在线 | 久久性生活视频 | 特黄特色大片免费播放器999 | 国产黄色影院 | 欧美成人午夜影院 | 在线观看日本免费视频大片一区 | 伊人成综合 | 久久久综合九色合综国产 | 欧美性猛交xxxx免费看久久久 | 中文字幕久精品免费视频 |