Spring閑談

依賴注入(Inverse of Control)


Spring 實現(xiàn)IoC(Inverse of Control)唯袄,就是通過 Spring容器 來創(chuàng)建萌狂,管理所有的Java對象(Java Bean)。
并且Spring容器使用配置文件來組織各個Java Bean之間的依賴關(guān)系褪测,而不是以硬編碼的方式讓它們耦合在一起滞磺!
沒有各種new真爽,配置文件管理各個Bean 之間的協(xié)作關(guān)系真的炒雞解耦意述,誰用誰知道。

Bean 的作用域 singleton (默認(rèn)) ,prototype 吮蛹,request荤崇,sessionglobal session 后面三個只在web應(yīng)用中有效

創(chuàng)建Bean的三種形式

  • 構(gòu)造器潮针,最常見的形式术荤,如果不采用構(gòu)造注入,Spring底層會調(diào)用Bean類的無參數(shù)構(gòu)造器來創(chuàng)建實例每篷,因此要求該Bean類提供無參數(shù)的構(gòu)造器瓣戚。Spring容器會默認(rèn)初始化所有屬性,基礎(chǔ)類型0或false焦读,引用類型null

  • 靜態(tài)工廠 子库,要創(chuàng)建的實例的Bean,class屬性要是靜態(tài)工廠類(因為Spring需要的是哪個工廠類來創(chuàng)建Bean實例)矗晃,用factory-method指定工廠方法仑嗅。

    ```
      package com.example.factory;
    
      public class ExampleFactory{  //靜態(tài)工廠方法
      public static Example newInstance(String message,int index){  
          return  new Example(message,index);  
      }  
    
      ---- xml配置文件
      <beans>
        <bean id = "byIndex"  class = "com.example.ExampleFactory"
             factory-method="newInstance">
            <constructor-arg index="0" value="Hello World!"/>  
            <constructor-arg index="1" value="1"/>  
        </bean>
     </beans>
     ```
    
  • 實例工廠,先配置實例工廠類张症,配置Bean無需class屬性, 用factory-bean指定工廠類id仓技,factory-method指定工廠方法

      ---- xml配置文件
      <beans>
          <bean id = "exampleFactory" class = "com.example.ExampleFactory"/>
    
          <bean id = "byName"  factory-bean = "exampleFactory" 
              factory-method="newInstance">
            <constructor-arg name="message" value="Hello World!"/>  
            <constructor-arg name="index" value="1"/>  
          </bean>
     </beans>
    

循環(huán)依賴問題


  • 構(gòu)造器注入的循環(huán)依賴問題是無法解決的
  • setter循環(huán)依賴是可以提前暴露剛完成的構(gòu)造器來解決(需要是singleton)

怎么檢測循環(huán)依賴

檢測循環(huán)依賴相對比較容易,Bean在創(chuàng)建的時候可以給該Bean打標(biāo)俗他,如果遞歸調(diào)用回來發(fā)現(xiàn)正在創(chuàng)建中的話脖捻, 即說明了循環(huán)依賴了。

Spring容器將每一個正在創(chuàng)建的Bean 標(biāo)識符放在一個“當(dāng)前創(chuàng)建Bean池”中拯辙,Bean標(biāo)識符在創(chuàng)建過程中將一直保持在這個池中郭变,因此如果在發(fā)現(xiàn)已經(jīng)在“當(dāng)前創(chuàng)建Bean池”里,將拋出BeanCurrentlyInCreationException異常表示循環(huán)依賴;而對于創(chuàng)建完畢的Bean將從“當(dāng)前創(chuàng)建Bean池”中清除掉涯保。

//DefaultSingletonBeanRegistry
protected void beforeSingletonCreation(String beanName) {        
  if (!this.singletonsCurrentlyInCreation.add(beanName)) {            
    throw new BeanCurrentlyInCreationException(beanName);       
  }    
}

怎么檢測循環(huán)依賴

提前暴露。
假如A周伦,B循環(huán)依賴

  1. 實例A夕春,將未注入屬性的A,暴露給容器(Wrap)
  2. 給A注入屬性专挪,發(fā)現(xiàn)要用B
  3. 實例B及志,注入屬性片排,發(fā)現(xiàn)要用A,在單例緩存中沒有找到A速侈,又去Warp中找到了率寡,注入完成
  4. 遞歸回來,A成功注入B
//初始化Bean之前提前把Factory暴露出去
addSingletonFactory(beanName, new ObjectFactory() {                
  public Object getObject() throws BeansException {                   
   return getEarlyBeanReference(beanName, mbd, bean);                
  }            
});

//通過暴露Factory的方式暴露倚搬,是因為有些Bean是需要被代理的
protected Object getEarlyBeanReference(String beanName, 
RootBeanDefinition mbd, 
Object bean) {        
  Object exposedObject = bean;        

  if (!mbd.isSynthetic() && hasInstantiationAwareBeanPostProcessors()) {            
    for (Iterator it = getBeanPostProcessors().iterator(); it.hasNext(); ) {               
       BeanPostProcessor bp = (BeanPostProcessor) it.next();             

       if (bp instanceof SmartInstantiationAwareBeanPostProcessor) {                   
        SmartInstantiationAwareBeanPostProcessor ibp 
          = (SmartInstantiationAwareBeanPostProcessor) bp;                    
        exposedObject = ibp.getEarlyBeanReference(exposedObject, beanName);               
       }          
    }        
  }        
  return exposedObject;   
}

// 在Bean 的單例緩存中獲取Bean
protected Object getSingleton(String beanName, boolean allowEarlyReference) {        
  Object singletonObject = this.singletonObjects.get(beanName);        
  if (singletonObject == null) {           
   synchronized (this.singletonObjects) {               
      // 單例緩存中沒有冶共,找提前暴露的                
      singletonObject = this.earlySingletonObjects.get(beanName);
      if (singletonObject == null && allowEarlyReference) {                    
        ObjectFactory singletonFactory = (ObjectFactory) this
                            .singletonFactories.get(beanName);       
             
        // 如果只是提前暴露了工廠(沒有實例),執(zhí)行工廠方法         
          if (singletonFactory != null) {                                           
            singletonObject = singletonFactory.getObject(); 
            this.earlySingletonObjects.put(beanName, singletonObject);                      
            this.singletonFactories.remove(beanName);                   
         }               
       }            
    }       
   }       
 return (singletonObject != NULL_OBJECT ? singletonObject : null);    
}

Spring 的幾個緩存池 :

  • alreadyCreated:已經(jīng)創(chuàng)建好的Bean 每界,檢測創(chuàng)建好的Bean是否依賴正在創(chuàng)建的Bean捅僵,如果是,說明原創(chuàng)建好多不可用了
  • singletonObjects:單例Bean
  • singletonFactories : 單例Bean 提前暴露的工廠
  • earlySingletonObjects:執(zhí)行了工廠方法生產(chǎn)出的Bean
  • singletonsCurrentlyCreation:創(chuàng)建中的Bean 眨层,用于檢測循環(huán)依賴

所以循環(huán)依賴無法解決的有
構(gòu)造器注入
代理類改變了Bean的版本(見alreadyCreated庙楚,提前暴露的別的Bean 依賴了,之后)
原型Bean (prototype)
參考烏哇哇這里


協(xié)調(diào)不同步的Bean


簡單的說趴樱,一個如果一個singleton的Bean 依賴一個prototype 的Bean的時候馒闷,會產(chǎn)生不同步的情況(因為singleton只創(chuàng)建一次,當(dāng)singleton調(diào)用 prototype 的時候叁征,一般的注入沒辦法讓 Spring 容器每次都返回一個新的 prototype的Bean)纳账。
兩種方法:

  1. 讓singleton 的bean 實現(xiàn) ApplicationContextAware 接口
public class A implements ApplicationContextAware {  
    //用于保存ApplicationContext的引用,set方式注入  
    private ApplicationContext applicationContext;  
    //模擬業(yè)務(wù)處理的方法  
    public Object process(){  
        B b = createB();  
        return b.execute();  
    }  
    private B createB() {  
        return (B) this.applicationContext.getBean("b"); //  
    }    
    public void setApplicationContext(ApplicationContext applicationContext)  
            throws BeansException {  
        this.applicationContext=applicationContext;//獲得該ApplicationContext引用  
    }  
}  

2 . lookup 方法

public abstract class A{  
    //模擬業(yè)務(wù)處理的方法  
    public Object process(){  
        B b= createB();  
        return b.execute();  
    }  
    protected abstract B createB();  
}  

<bean id="b" class="com.example.B" scope="prototype"/>  
<bean id="a" class="com.example.A">  
      <lookup-method name="createB" bean="b"/>  
</bean>  

推薦用第二種方法航揉,這樣和Spring的代碼沒有耦合塞祈。
createB() 方法是個抽象方法,我們并沒有實現(xiàn)它啊帅涂,那它是怎么拿到B類的呢议薪。這里的奧妙就是Srping應(yīng)用了CGLIB(動態(tài)代理)類庫。這個方法是不是抽象都無所謂媳友,不影響CGLIB動態(tài)代理斯议。
在這個方法的代碼簽名處有個標(biāo)準(zhǔn):

<public|protected> [abstract] <return-type> theMethodName(no-arguments);

  • public|protected要求方法必須是可以被子類重寫和調(diào)用的;
  • abstract可選醇锚,如果是抽象方法哼御,CGLIB的動態(tài)代理類就會實現(xiàn)這個方法,如果不是抽象方法焊唬,就會覆蓋這個方法恋昼,所以沒什么影響;
  • return-type就是non-singleton-bean的類型咯赶促,當(dāng)然可以是它的父類或者接口液肌。
  • no-arguments不允許有參數(shù)。

AOP

AOP (Aspect-OrientedProgramming鸥滨,面向方面編程)嗦哆,是對OOP(Object-Oriented Programing谤祖,面向?qū)ο缶幊蹋┑难a(bǔ)充。
傳統(tǒng)的OOP模式編程老速,會在每個類調(diào)用一些共同的方法(log粥喜,安全檢查,事務(wù)橘券,性能統(tǒng)計额湘,異常處理等)。
這些方法會造成代碼的冗余约郁,而且曾加的代碼的耦合性(功能邏輯和業(yè)務(wù)邏輯沒有分開)

實現(xiàn)AOP的兩種方式:

  • XML風(fēng)格缩挑,使用<aop:config>

首先定義一個要被切的類


public interface PersonService {
    public String getPersonName(Integer id);
    public void save(String name);
}


public class PersonServiceBean implements PersonService {
    @Override
    public String getPersonName(Integer id) {
        // TODO Auto-generated method stub
        return null;
    }
    @Override
    public void save(String name) {
        // TODO Auto-generated method stub
        System.out.println("您輸入的是" + name);
    }    
}

然后,我們來定義切點類和切點


public class MyInterceptor {
    
    public void anyMethod(){}

    public void doBefore(String name){
        System.out.println("前置通知" + name);
    }
    
    public void doAfterReturn(String result){
        System.out.println("后置通知" + result);
    }
    
    public Object doAfter(ProceedingJoinPoint pjp) throws Throwable{
        System.out.println("進(jìn)入方法");
        Object result = pjp.proceed();
        System.out.println("最終通知");
        return result;
    }
    
    public void doAfterThrowing(Exception e){
        System.out.println("異常通知" + e);
    }
    
    public void doAround(){
        System.out.println("環(huán)繞通知");
    }
}


<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-2.5.xsd
           http://www.springframework.org/schema/aop
           http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
    
    <aop:config>
        <aop:aspect id="asp" ref="myInterceptor">
             <!-- 切點-->
            <aop:pointcut  id="mycut" 
      expression="execution(* cn.qdlg.service.impl.PersonServiceBean.*(..))"/>
            <aop:before pointcut-ref="mycut" method="doBefore"/>
            <aop:after pointcut-ref="mycut" method="doAfter"/>
            <aop:after-returning pointcut-ref="mycut" method="doAfterReturn"/>
            <aop:around pointcut-ref="mycut" method="doAround"/>
            <aop:after-throwing pointcut-ref="mycut" method="doAfterThrowing"/>
        </aop:aspect>
    </aop:config>

    <bean id="myInterceptor" class="cn.qdlg.service.MyInterceptor"></bean>
    <bean id="PersonService" class="cn.qdlg.service.impl.PersonServiceBean"></bean>
</beans>
  • @Aspect 風(fēng)格
//啟動 aspectj 代理
<aop:aspectj-autoproxy proxy-target-class="true"/>

public class MyInterceptor {
    @Pointcut("execution (* cn.qdlg.service.impl.PersonServiceBean.*(..))")
    public void anyMethod(){}

    @Before("anyMethod()")
    public void doBefore(String name){
        System.out.println("前置通知" + name);
    }
    
    @AfterReturning("anyMethod() && args(name)")
    public void doAfterReturn(String result){
        System.out.println("后置通知" + result);
    }
    
    @After("anyMethod()")
    public Object doAfter(ProceedingJoinPoint pjp) throws Throwable{
        System.out.println("進(jìn)入方法");
        Object result = pjp.proceed();
        System.out.println("最終通知");
        return result;
    }
    
    @AfterThrowing("anyMethod()")
    public void doAfterThrowing(Exception e){
        System.out.println("異常通知" + e);
    }
    
    @Around("anyMethod()")
    public void doAround(){
        System.out.println("環(huán)繞通知");
    }
}

AOP 實現(xiàn)的方式鬓梅,動態(tài)代理----- >http://www.reibang.com/p/6411406ef7c3

https://my.oschina.net/elain/blog/382494

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末供置,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子绽快,更是在濱河造成了極大的恐慌芥丧,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,743評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件坊罢,死亡現(xiàn)場離奇詭異续担,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)活孩,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評論 3 385
  • 文/潘曉璐 我一進(jìn)店門物遇,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人憾儒,你說我怎么就攤上這事询兴。” “怎么了起趾?”我有些...
    開封第一講書人閱讀 157,285評論 0 348
  • 文/不壞的土叔 我叫張陵诗舰,是天一觀的道長。 經(jīng)常有香客問我训裆,道長眶根,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,485評論 1 283
  • 正文 為了忘掉前任边琉,我火速辦了婚禮属百,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘变姨。我一直安慰自己诸老,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,581評論 6 386
  • 文/花漫 我一把揭開白布钳恕。 她就那樣靜靜地躺著别伏,像睡著了一般。 火紅的嫁衣襯著肌膚如雪忧额。 梳的紋絲不亂的頭發(fā)上厘肮,一...
    開封第一講書人閱讀 49,821評論 1 290
  • 那天,我揣著相機(jī)與錄音睦番,去河邊找鬼类茂。 笑死,一個胖子當(dāng)著我的面吹牛托嚣,可吹牛的內(nèi)容都是我干的巩检。 我是一名探鬼主播,決...
    沈念sama閱讀 38,960評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼示启,長吁一口氣:“原來是場噩夢啊……” “哼兢哭!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起夫嗓,我...
    開封第一講書人閱讀 37,719評論 0 266
  • 序言:老撾萬榮一對情侶失蹤迟螺,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后舍咖,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體矩父,經(jīng)...
    沈念sama閱讀 44,186評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,516評論 2 327
  • 正文 我和宋清朗相戀三年排霉,在試婚紗的時候發(fā)現(xiàn)自己被綠了窍株。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,650評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡攻柠,死狀恐怖球订,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情辙诞,我是刑警寧澤辙售,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站飞涂,受9級特大地震影響旦部,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜较店,卻給世界環(huán)境...
    茶點故事閱讀 39,936評論 3 313
  • 文/蒙蒙 一士八、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧梁呈,春花似錦婚度、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,757評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽醋虏。三九已至,卻和暖如春哮翘,著一層夾襖步出監(jiān)牢的瞬間颈嚼,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,991評論 1 266
  • 我被黑心中介騙來泰國打工饭寺, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留阻课,地道東北人。 一個月前我還...
    沈念sama閱讀 46,370評論 2 360
  • 正文 我出身青樓艰匙,卻偏偏與公主長得像限煞,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子员凝,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,527評論 2 349

推薦閱讀更多精彩內(nèi)容