天天看点

Spring AOP中的环绕通知

通过对比动态代理中的环绕通知代码,发现动态代理的环绕通知有明确的切入点方法调用,而我们的代码中没有。

spring框架为我们提供了一个接口:ProceedingJoinPoint。该接口有一个方法proceed(),此方法就相当于明确调用切入点方法。该接口可以作为环绕通知的方法参数,在程序执行时,spring框架会为我们提供该接口的实现类供我们使用。

spring中环绕通知:它是spring框架为我们提供的一种可以在代码中手动控制增强方法何时执行的方式。

示例:

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.qublog</groupId>
    <artifactId>spring03_advicetype</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>

    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>5.0.2.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>1.8.7</version>
        </dependency>
    </dependencies>
</project>
           

AccountService接口:

package com.qublog.service;

//账户的业务层接口
public interface AccountService {
    //模拟保存账户(无返回值无参数)
    void saveAccount();

    //模拟更新账户(无返回值有参数)
    void updateAccount(int i);

    //模拟删除账户(有返回值无参数)
    int deleteAccount();
}
           

AccountServiceImpl类:

package com.qublog.service.impl;

import com.qublog.service.AccountService;

//账户业务层实现类
public class AccountServiceImpl implements AccountService {
    public void saveAccount() {
        System.out.println("执行了保存");
        //int i=1/0;
    }

    public void updateAccount(int i) {
        System.out.println("执行了更新"+i);
    }

    public int deleteAccount() {
        System.out.println("执行了删除");
        return 0;
    }
}
           

Logger类:

package com.qublog.utils;

import org.aspectj.lang.ProceedingJoinPoint;

//用于记录日志的工具类,它提高公共代码
public class Logger {
    //前置通知
    public void beforePrintLog() {
        System.out.println("Logger类中的beforePrintLog方法开始记录日志了...");
    }

    //后置通知
    public void afterReturningPrintLog() {
        System.out.println("Logger类中的afterReturningPrintLog方法开始记录日志了...");
    }

    //异常通知
    public void afterThrowingPrintLog() {
        System.out.println("Logger类中的afterThrowingPrintLog方法开始记录日志了...");
    }

    //最终通知
    public void afterPrintLog() {
        System.out.println("Logger类中的afterPrintLog方法开始记录日志了...");
    }

    //
    public Object aroundPrintLog(ProceedingJoinPoint proceedingJoinPoint) {
        Object rtValue = null;
        try {
            Object[] args = proceedingJoinPoint.getArgs();
            System.out.println("Logger类中的aroundPrintLog方法开始记录日志了...");
            rtValue = proceedingJoinPoint.proceed(args);
            System.out.println("Logger类中的aroundPrintLog方法开始记录日志了...");
            return rtValue;
        } catch (Throwable t) {
            System.out.println("Logger类中的aroundPrintLog方法开始记录日志了...");
            throw new RuntimeException(t);
        } finally {
            System.out.println("Logger类中的aroundPrintLog方法开始记录日志了...");
        }
    }
}
           

bean.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">

    <!-- 配置spring的ioc,把service对象配置进来 -->
    <bean id="accountService" class="com.qublog.service.impl.AccountServiceImpl"></bean>

    <!-- spring中基于xml的aop配置步骤 -->

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

    <!-- 配置aop -->
    <aop:config>
        <!-- 配置切入点表达式 id属性用于指定表达式的唯一标识 expression用于指定表达式内容 -->
        <!-- 此标签写在aop:aspect标签内部,只能当前切面使用,它还可以写在aop:aspect外面,所有切面可用 -->
        <aop:pointcut id="pt1" expression="execution(* com.qublog.service.impl.*.*(..))"></aop:pointcut>
        <!-- 配置切面 -->
        <aop:aspect id="logAdvice" ref="logger">
            <!--&lt;!&ndash; 配置前置通知 &ndash;&gt;-->
            <!--<aop:before method="beforePrintLog" pointcut-ref="pt1"></aop:before>-->

            <!--&lt;!&ndash; 配置后置通知 &ndash;&gt;-->
            <!--<aop:after-returning method="afterReturningPrintLog" pointcut-ref="pt1"></aop:after-returning>-->

            <!--&lt;!&ndash; 配置异常通知 &ndash;&gt;-->
            <!--<aop:after-throwing method="afterThrowingPrintLog" pointcut-ref="pt1"></aop:after-throwing>-->

            <!--&lt;!&ndash; 配置最终通知 &ndash;&gt;-->
            <!--<aop:after method="afterPrintLog" pointcut-ref="pt1"></aop:after>-->

            <!-- 配置环绕通知 -->
            <aop:around method="aroundPrintLog" pointcut-ref="pt1"></aop:around>
        </aop:aspect>
    </aop:config>
</beans>
           

AOPTest类:

package com.qublog.test;

import com.qublog.service.AccountService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

//测试aop配置
public class AOPTest {
    public static void main(String[] args) {
        //获取容器
        ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
        //获取对象
        AccountService as = ac.getBean("accountService",AccountService.class);
        //执行方法
        as.saveAccount();
    }

}