AOP -連線點和切點的區別
阿新 • • 發佈:2018-11-03
一直沒搞懂連線點和切點的關係區別,《spring 實戰》這本書第四章有介紹,但是還是沒看懂。所以查了點資料,感覺還是通過程式碼看最直觀。
1. 建立一個簡單的aspect切面class
public class Logging {/** * This is the method which I would like to execute * before a selected method execution. */public void beforeAdvice() { System.out.println("Going to setup student profile."); } /** * This is the method which I would like to execute * after a selected method execution. */public void afterAdvice() { System.out.println("Student profile has been setup."); } /** * This is the method which I would like to execute * when any method returns. */ public void afterReturningAdvice(Object retVal) { System.out.println("Returning:" + retVal.toString()); } /** * This is the method which I would like to execute * if there is an exception raised. */ public void AfterThrowingAdvice(IllegalArgumentException ex) { System.out.println("There has been an exception: " + ex.toString()); } }
2. SpringAOP.xml配置
<bean id="student" class="com.seeyon.SpringBean.aop.Student" p:name="yangyu" p:age="27"></bean> <bean id="logging" class="com.seeyon.SpringBean.aop.Logging"></bean> <aop:config> <aop:aspect id="log" ref="logging"> ------切面class <aop:pointcut id="studentMethod" expression="execution(* com.seeyon.SpringBean.aop.Student.get*(..))"/> -------切點 <aop:before pointcut-ref="studentMethod" method="beforeAdvice"/>------方法執行之前觸發切面class的beforeAdvice方法 <aop:after pointcut-ref="studentMethod" method="afterAdvice"/>------方法執行之後觸發切面class的afterAdvice方法 </aop:aspect> </aop:config>
切點:"execution(* com.seeyon.SpringBean.aop.Student.get*(..))"
- 第一個*代表方法的返回值是任意的
- get*代表以get開頭的所有方法
- (..)代表方法的引數是任意個數
3. 測試類
public class test { public static void main(String[] args) { ApplicationContext context = new ClassPathXmlApplicationContext("SpringAop.xml"); Student student = (Student) context.getBean("student"); student.getName(); // student.getAge(); // student.printThrowException(); } } /** *執行結果 *Going to setup student profile. * *Name : yangyu * *Student profile has been setup. */
4. 根據SpringAOP.xml配置
- 切點掃描到 getName()這個方法被呼叫時 這個連線點
- 在getName()被呼叫之前觸發切面class的beforeAdvice方法,打印出(Going to setup student profile.)
- 執行getName()
- 方法執行之後觸發切面class的afterAdvice方法列印(Student profile has been setup.)
5. 結論
- Aspect(切面):上面xml中aop:aspect標籤表示的就是一個切面;
- Pointcut (切點):aop:pointcut標籤表示一個切點,也就是滿足條件被掃描到的目標方法;
- Target Object(目標物件): 包含連線點的物件。也被稱作被通知或被代理物件。(如上面所說的目標方法)
- Join Point(連線點):連線點是一個虛擬的概念,可以理解為所有滿足切點掃描條件的所有的時機。method="beforeAdvice"表示被掃描到目標方法後確定增強的時機,也就是連線點,這個表示前置一個增強(這裡翻譯Advice更好一點,而不是通知)
- Advice(增強):增強是一個具體的函式,例如,日誌記錄,許可權驗證,事務控制,效能檢測,錯誤資訊檢測等。
- Introduction(引入): 新增方法或欄位到被增強的類,Spring允許引入新的介面到任何被增強的物件。例如,你可以使用一個引入使任何物件實現 IsModified介面,來簡化快取。Spring中要使用Introduction, 可有通過DelegatingIntroductionInterceptor來實現增強,通過DefaultIntroductionAdvisor來配置Advice和代理類要實現的介面
- Weaving(織入):組裝切面來建立一個被通知物件。這可以在編譯時完成(例如使用AspectJ編譯器),也可以在執行時完成。Spring和其他純Java AOP框架一樣,在執行時完成織入。等候時機(連線點)