1. 程式人生 > 其它 >【SpringAOP】SpringAOP的通知

【SpringAOP】SpringAOP的通知

四種通知

若出現了異常,會執行異常通知,但不會執行後置通知

    <!--配置AOP-->
    <aop:config>
        <aop:aspect id="logAdvice" ref="logger">
            <!--配置前置通知:在切入點方法執行之前執行-->
            <aop:before method="beforePrintLog" pointcut="execution( * com.czy.service.impl.*.*(..) )"></aop:before>

            <!--配置後置通知:在切入點方法正常執行之後執行,它和異常通知只能執行一個-->
            <aop:after-returning method="afterReturningPrintLog" pointcut="execution( * com.czy.service.impl.*.*(..) )"></aop:after-returning>

            <!--配置異常通知:在切入點方法產生異常之後執行,它和後置通知只能執行一個-->
            <aop:after-throwing method="afterThrowingPrintLog" pointcut="execution( * com.czy.service.impl.*.*(..))"></aop:after-throwing>

            <!--配置最終通知:無論切入點方法是否正常執行它都會在其後面執行-->
            <aop:after method="afterPrintLog" pointcut="execution( * com.czy.service.impl.*.*(..) )"></aop:after>
        </aop:aspect>
    </aop:config>

通用化切入點表示

    <aop:config>
        <aop:aspect id="logAdvice" ref="logger">
            <!--配置切入點表示式,id屬性用於指定表示式唯一標識.expression屬性用於指定表示式內容
                此標籤寫在aop:aspect標籤內部只能當前切面使用
                此標籤還可以寫在aop:aspect外面,此時就變成了所有切面可用(必須出現在使用的切面之前)
            -->
            <aop:pointcut id="pt" expression="execution( * com.czy.service.impl.*.*(..) )"/>

            <!--配置前置通知-->
            <aop:before method="beforePrintLog" pointcut-ref="pt" ></aop:before>

            <!--配置後置通知-->
            <aop:after-returning method="afterReturningPrintLog" pointcut-ref="pt"></aop:after-returning>

            <!--配置異常通知-->
            <aop:after-throwing method="afterThrowingPrintLog" pointcut-ref="pt"></aop:after-throwing>

            <!--配置最終通知-->
            <aop:after method="afterPrintLog" pointcut-ref="pt"></aop:after>
        </aop:aspect>
    </aop:config>

環繞通知


配置檔案

<?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
        https://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/aop
        https://www.springframework.org/schema/aop/spring-aop.xsd">

    <!--配置spring的ioc,把service物件配置-->
    <bean id="accountService" class="com.czy.service.impl.AccountServiceImpl"></bean>


    <!--配置logger類-->
    <bean id="logger" class="com.czy.utils.Logger"></bean>

    <!--配置AOP-->
    <aop:config>
        <aop:aspect id="logAdvice" ref="logger">
            <!--配置切入點表示式,id屬性用於指定表示式唯一標識.expression屬性用於指定表示式內容
                此標籤寫在aop:aspect標籤內部只能當前切面使用
                此標籤還可以寫在aop:aspect外面,此時就變成了所有切面可用(必須出現在使用的切面之前)
            -->
            <aop:pointcut id="pt" expression="execution( * com.czy.service.impl.*.*(..) )"/>
            

            <!--配置環繞通知-->
            <aop:around method="aroundPrintLog" pointcut-ref="pt"></aop:around>
        </aop:aspect>
    </aop:config>
</beans>

切入點

package com.czy.utils;

import org.aspectj.lang.ProceedingJoinPoint;

/**
 * 用於記錄日誌的工具類,它裡面提供了公共的程式碼
 */
public class Logger {
    /**
     * 前置通知
     */
    public void beforePrintLog(){
        System.out.println("前置通知...");
    }

    /**
     * 後置通知
     */
    public void afterReturningPrintLog(){
        System.out.println("後置通知...");
    }

    /**
     * 異常通知
     */
    public void afterThrowingPrintLog(){
        System.out.println("異常通知...");
    }

    /**
     * 最終通知
     */
    public void afterPrintLog(){
        System.out.println("最終通知...");
    }

    /**
     * 環繞通知
     * 問題:
     *      當我們配置了環繞通知之後,切入點方法沒有執行,而通知方法執行了
     * 分析:
     *      通過對比動態代理中的環繞通知程式碼,發現動態代理的環繞通知有明確的切入點方法呼叫,而我們的程式碼中沒有
     * 解決:
     *      Spring框架為我們提供了一個介面:ProceedingJointPoint。該介面有一個方法proceed(),此方法就相當於明確呼叫切入點方法
     *      該介面可以作為環繞通知的方法引數,在程式執行時,spring框架會為我們提供該介面的實現類供我們使用
     * spring中的環繞通知:
     *      它是spring框架為我們提供的一種可以在程式碼中手動控制增強方法何時執行的方式
     */
    public Object aroundPrintLog(ProceedingJoinPoint pjp){
        Object rtValue = null;
        try {
            Object[] args = pjp.getArgs(); //得到方法執行所需要的引數
            beforePrintLog(); //前置通知
            rtValue = pjp.proceed(args); //明確呼叫切入點方法
            afterReturningPrintLog(); //後置通知
            return rtValue;
        } catch (Throwable throwable) {
            afterThrowingPrintLog(); //異常通知
            throwable.printStackTrace();
        }finally {
            afterPrintLog(); //最終通知
        }
        return rtValue;
    }
}

``