aop實例

Spring Aop實例

標籤: SpringAopAspect實例
29118人閱讀 評論(17) 收藏 舉報
分類:

在上篇博文中,我向大家介紹了Aop重要概念和教程,這回給出代碼示例。

一、XML方式

1. TestAspect:切面類

  1. package com.spring.aop;  
  2.   
  3. import org.aspectj.lang.JoinPoint;  
  4. import org.aspectj.lang.ProceedingJoinPoint;  
  5.   
  6. public class TestAspect {  
  7.   
  8.     public void doAfter(JoinPoint jp) {  
  9.         System.out.println("log Ending method: " + jp.getTarget().getClass().getName() + "." + jp.getSignature().getName());  
  10.     }  
  11.   
  12.     public Object doAround(ProceedingJoinPoint pjp) throws Throwable {  
  13.         long time = System.currentTimeMillis();  
  14.         Object retVal = pjp.proceed();  
  15.         time = System.currentTimeMillis() - time;  
  16.         System.out.println("process time: " + time + " ms");  
  17.         return retVal;  
  18.     }  
  19.   
  20.     public void doBefore(JoinPoint jp) {  
  21.         System.out.println("log Begining method: " + jp.getTarget().getClass().getName() + "." + jp.getSignature().getName());  
  22.     }  
  23.   
  24.     public void doThrowing(JoinPoint jp, Throwable ex) {  
  25.         System.out.println("method " + jp.getTarget().getClass().getName() + "." + jp.getSignature().getName() + " throw exception");  
  26.         System.out.println(ex.getMessage());  
  27.     }  
  28. }  

2. AServiceImpl:目標對象

  1. package com.spring.service;  
  2.   
  3. // 使用jdk動態代理  
  4. public class AServiceImpl implements AService {  
  5.   
  6.     public void barA() {  
  7.         System.out.println("AServiceImpl.barA()");  
  8.     }  
  9.   
  10.     public void fooA(String _msg) {  
  11.         System.out.println("AServiceImpl.fooA(msg:" + _msg + ")");  
  12.     }  
  13. }  

3. BServiceImpl:目標對象

  1. package com.spring.service;  
  2.   
  3. // 使用cglib  
  4. public class BServiceImpl {  
  5.   
  6.     public void barB(String _msg, int _type) {  
  7.         System.out.println("BServiceImpl.barB(msg:" + _msg + " type:" + _type + ")");  
  8.         if (_type == 1)  
  9.             throw new IllegalArgumentException("測試異常");  
  10.     }  
  11.   
  12.     public void fooB() {  
  13.         System.out.println("BServiceImpl.fooB()");  
  14.     }  
  15.   
  16. }  

4. ApplicationContext:Spring配置文件

  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  4.     xmlns:aop="http://www.springframework.org/schema/aop"  
  5.     xmlns:context="http://www.springframework.org/schema/context"  
  6.     xmlns:tx="http://www.springframework.org/schema/tx"  
  7.     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd  
  8.         http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd  
  9.         http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd  
  10.         http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd">  
  11.     <aop:config>  
  12.         <aop:aspect id="TestAspect" ref="aspectBean">  
  13.             <!--配置com.spring.service包下所有類或接口的所有方法-->  
  14.             <aop:pointcut id="businessService" expression="execution(* com.spring.service.*.*(..))" />  
  15.             <aop:before pointcut-ref="businessService" method="doBefore"/>  
  16.             <aop:after pointcut-ref="businessService" method="doAfter"/>  
  17.             <aop:around pointcut-ref="businessService" method="doAround"/>  
  18.             <aop:after-throwing pointcut-ref="businessService" method="doThrowing" throwing="ex"/>  
  19.         </aop:aspect>  
  20.     </aop:config>  
  21.       
  22.     <bean id="aspectBean" class="com.spring.aop.TestAspect" />  
  23.     <bean id="aService" class="com.spring.service.AServiceImpl"></bean>  
  24.     <bean id="bService" class="com.spring.service.BServiceImpl"></bean>  
  25. </beans>  

 

二、註解(Annotation)方式

1. TestAnnotationAspect

  1. package com.spring.aop;  
  2.   
  3. import org.aspectj.lang.ProceedingJoinPoint;  
  4. import org.aspectj.lang.annotation.After;  
  5. import org.aspectj.lang.annotation.AfterReturning;  
  6. import org.aspectj.lang.annotation.AfterThrowing;  
  7. import org.aspectj.lang.annotation.Around;  
  8. import org.aspectj.lang.annotation.Aspect;  
  9. import org.aspectj.lang.annotation.Before;  
  10. import org.aspectj.lang.annotation.Pointcut;  
  11.   
  12. @Aspect  
  13. public class TestAnnotationAspect {  
  14.   
  15.     @Pointcut("execution(* com.spring.service.*.*(..))")  
  16.     private void pointCutMethod() {  
  17.     }  
  18.   
  19.     //聲明前置通知  
  20.     @Before("pointCutMethod()")  
  21.     public void doBefore() {  
  22.         System.out.println("前置通知");  
  23.     }  
  24.   
  25.     //聲明後置通知  
  26.     @AfterReturning(pointcut = "pointCutMethod()", returning = "result")  
  27.     public void doAfterReturning(String result) {  
  28.         System.out.println("後置通知");  
  29.         System.out.println("---" + result + "---");  
  30.     }  
  31.   
  32.     //聲明例外通知  
  33.     @AfterThrowing(pointcut = "pointCutMethod()", throwing = "e")  
  34.     public void doAfterThrowing(Exception e) {  
  35.         System.out.println("例外通知");  
  36.         System.out.println(e.getMessage());  
  37.     }  
  38.   
  39.     //聲明最終通知  
  40.     @After("pointCutMethod()")  
  41.     public void doAfter() {  
  42.         System.out.println("最終通知");  
  43.     }  
  44.   
  45.     //聲明環繞通知  
  46.     @Around("pointCutMethod()")  
  47.     public Object doAround(ProceedingJoinPoint pjp) throws Throwable {  
  48.         System.out.println("進入方法---環繞通知");  
  49.         Object o = pjp.proceed();  
  50.         System.out.println("退出方法---環繞通知");  
  51.         return o;  
  52.     }  
  53. }  

2. ApplicationContext:Spring配置文件

  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  4.     xmlns:aop="http://www.springframework.org/schema/aop"  
  5.     xmlns:context="http://www.springframework.org/schema/context"  
  6.     xmlns:tx="http://www.springframework.org/schema/tx"  
  7.     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd  
  8.         http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd  
  9.         http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd  
  10.         http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd">  
  11.     <aop:aspectj-autoproxy></aop:aspectj-autoproxy>  
  12.     <bean class="org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator" />  
  13.   
  14.     <bean id="aspectBean" class="com.spring.aop.TestAnnotationAspect" />  
  15.     <bean id="aService" class="com.spring.service.AServiceImpl"></bean>  
  16.     <bean id="bService" class="com.spring.service.BServiceImpl"></bean>  
  17. </beans>  

 

關於切入點表達式,大家需要好好練習才能深入理解其中含義。即使看的懂,但是寫起來卻非常麻煩,並沒有想象中那麼簡單。

最後,再告訴大家:

任何通知(Advice)方法可以將第一個參數定義爲 org.aspectj.lang.JoinPoint類型。JoinPoint接口提供了一系列有用的方法, 比如 getArgs() (返回方法參數)、getThis() (返回代理對象)、getTarget() (返回目標)、getSignature() (返回正在被通知的方法相關信息)和 toString() (打印出正在被通知的方法的有用信息。

其中getSignature()返回的Signature對象可強制轉換爲MethodSignature,其功能非常強大,能獲取包括參數名稱在內的一切方法信息。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章