JavaEE——Spring4--(7)Spring AOP 面向切面編程

切面(Aspect): 橫切關注點(跨越應用程序多個模塊的功能)被模塊化的特殊對象
通知(Advice): 切面必需要完成的工做
目標(Target): 被通知的對象
代理(Proxy): 向目標對象應用通知以後建立的對象
鏈接點(Joinpoint):程序執行的某個特定位置:如類某個方法調用前、調用後、方法拋出異常後等。鏈接點由兩個信息肯定:方法表示的程序執行點相對點表示的方位。例如 ArithmethicCalculator#add() 方法執行前的鏈接點,執行點爲 ArithmethicCalculator#add(); 方位爲該方法執行前的位置
切點(pointcut):每一個類都擁有多個鏈接點:例如 ArithmethicCalculator 的全部方法實際上都是鏈接點,即鏈接點是程序類中客觀存在的事務。AOP 經過切點定位到特定的鏈接點。類比:鏈接點至關於數據庫中的記錄,切點至關於查詢條件。切點和鏈接點不是一對一的關係,一個切點匹配多個鏈接點,切點經過 org.springframework.aop.Pointcut 接口進行描述,它使用類和方法做爲鏈接點的查詢條件。java

 

編寫SpringAOP  spring

1、基於註解方式配置AOP數據庫

  基於 AspectJ 註解或基於 XML 配置的 AOPexpress

1.加入jar包模塊化

2.在配置文件中加入AOP的命名空間spa

3.基於註解的方式3d

AspectJ 支持 5 種類型的通知註解:
@Before: 前置通知, 在方法執行以前執行
@After: 後置通知, 在方法執行以後執行  不管該方法是否異常
@AfterRunning: 返回通知, 在方法返回結果以後執行
@AfterThrowing: 異常通知, 在方法拋出異常以後
@Around: 環繞通知, 圍繞着方法執行代理

 i 聲明一個方法日誌

ii   在方法前加入@Before註解xml

 ④訪問當前鏈接點的細節

   能夠在通知方法中聲明一個類型爲 JoinPoint 的參數. 而後就能訪問連接細節. 如方法名稱和參數值.

 

//日誌切面
//把這個類聲明爲一個切面:須要把該類放入IOC容器中
@Component
//再聲明爲一個切面
@Aspect
public class LoggingAspect {


    //聲明該方法是一個前置通知:在目標執行以前執行
    @Before("execution(public int aop.ArithmeticCalculator.*(int, int))")
    public void befordMethod(JoinPoint joinPoint){
        String methodName = joinPoint.getSignature().getName();
        List<Object> args = Arrays.asList(joinPoint.getArgs());
        System.out.println("The method " + methodName + " begins with: " + args);
    }

}

  後置通知

//後置通知:在方法執行以後執行,不管該方法是否出現異常
    @After("execution(public int aop.ArithmeticCalculator.*(int, int))")
    public void afterMethod(JoinPoint joinPoint){
        String methodName = joinPoint.getSignature().getName();
        System.out.println("The method " + methodName + " ends");
    }

  返回通知

//在方法正常結束時執行的代碼,返回通知是能夠訪問到返回值的
    @AfterReturning(value="execution(public int aop.ArithmeticCalculator.*(..))", returning="result")
    public void afterReturning(JoinPoint joinPoint, Object result){
        String methodName = joinPoint.getSignature().getName();
        System.out.println("The method " + methodName + " ends with " + result);
    }

  異常通知

 

    //目標方法出現異常時執行的代碼,能夠訪問到異常對象,且能夠指定在出現異常時再執行通知代碼
    @AfterThrowing(value="execution(public int aop.ArithmeticCalculator.*(..))", throwing="ex")
    public void afterThrowing(JoinPoint joinPoint, Exception ex){
        String methodName = joinPoint.getSignature().getName();
        System.out.println("The method " + methodName + " occurs with: " + ex);
    }

  環繞通知

/**
     * 環繞通知需攜帶ProceedingJoinPoint類型的參數
     * 環繞通知相似於動態代理的全過程:ProceedingJoinPoint類型的參數能夠決定是否執行目標方法
     * 且環繞通知必須有返回值,返回值即爲目標方法的返回值
     *
     */
    @Around("execution(public int aop.ArithmeticCalculator.*(..))")
    public Object aroundMethod(ProceedingJoinPoint proceedingJoinPoint){
        Object result = null;
        String methodName = proceedingJoinPoint.getSignature().getName();
        try {
            //前置通知
            System.out.println("---The method " + methodName + "begin with " + Arrays.asList(proceedingJoinPoint.getArgs()));
           //執行目標方法
            result = proceedingJoinPoint.proceed();
            //返回通知
            System.out.println("---The method ends with " + result);

        } catch (Throwable throwable) {
            throwable.printStackTrace();
            //異常通知
            System.out.println("The method occurs with exception " + throwable);

        }

        //後置通知
        System.out.println("---The method " + methodName + " ends");

        return result;
    }

  

 切面的優先級

 使用@Order註解指定切面的優先級,值越小 優先級越高

 重用切面表達式   @Pointcut

 

 

/**
     * 定義一個方法,用於聲明切入點表達式,通常,該方法不須要傳入其餘代碼
     * 使用@Pointcut來聲明一個切入點表達式
     * 後面的通知直接使用方法名來引用當前的切入點表達式 
     */
    @Pointcut("execution(public int aop.ArithmeticCalculator.*(..))")
    public void declareJoinPointExpression(){

    }

    //聲明該方法是一個前置通知:在目標執行以前執行
    @Before("declareJoinPointExpression()")
    public void befordMethod(JoinPoint joinPoint){
        String methodName = joinPoint.getSignature().getName();
        List<Object> args = Arrays.asList(joinPoint.getArgs());
        System.out.println("The method " + methodName + " begins with: " + args);
    }

 

  

2、基於XML配置文件配置AOP
在文件中的註解所有去掉,直接在xml配置文件中進行指定
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">

    <!--配置bean-->
    <bean id="arithmeticCalculator" class="aop.ArithmeticCalculatorImp"></bean>

    <!--配置切面的bean-->
    <bean id="loggingAspect" class="aop.LoggingAspect"></bean>

    <bean id="validationAspect" class="aop.ValidationAspect"></bean>

    <!--配置AOP-->
    <aop:config>
        <!--配置切點表達式-->
        <aop:pointcut expression="execution(* aop.ArithmeticCalculator.*(..))" id="pointcut"/>
        <!--配置切面通知-->
        <aop:aspect ref="loggingAspect" order="2">
            <aop:before method="befordMethod" pointcut-ref="pointcut"/>
            <aop:after method="afterMethod" pointcut-ref="pointcut"/>
            <aop:after-throwing method="afterThrowing" pointcut-ref="pointcut" throwing="ex"/>
            <aop:after-returning method="afterReturning" pointcut-ref="pointcut" returning="result"/>
            <!--<aop:around method="aroundMethod" pointcut-ref="pointcut"/>-->
        </aop:aspect>

        <aop:aspect ref="validationAspect" order="1">
            <aop:before method="validate" pointcut-ref="pointcut"/>
        </aop:aspect>
    </aop:config>
</beans>
相關文章
相關標籤/搜索