Spring注解AOP中通知顺序颠倒的bug

记录在Spring框架有关注解AOP的学习过程中的遇到的一个bug:

首先是Project Structure:
在这里插入图片描述

配置文件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"
       xmlns:context="http://www.springframework.org/schema/context"
       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
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd">

    <!-- 配置Spring创建容器时要扫描的包 -->
    <context:component-scan base-package="wzc"></context:component-scan>

    <!-- 配置Spring开启注解AOP的支持 -->
    <aop:aspectj-autoproxy></aop:aspectj-autoproxy>

</beans>

业务层Service实现类:

@Service("accountService")
public class AccountServiceImpl implements IAccountService {


    public void saveAccount() {
        System.out.println("执行了保存...");
//        int i = 1/0;
    }
}

工具类Logger:

@Component("logger")
@Aspect//表示当前类是一个切面类
public class Logger {

    @Pointcut("execution(* wzc.service.impl.*.*(..))")
    private void pt1(){}

    /**
     * 前置通知
     */
    @Before("pt1()")
    public void beforePrintLog(){
        System.out.println("前置通知Logger类中的beforePrintLog方法开始记录日志了...");
    }

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

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

    /**
     * 最终通知
     */
    @After("pt1()")
    public void afterPrintLog(){
        System.out.println("最终通知Logger类中的afterPrintLog方法开始记录日志了...");
    }
	
	/**
	* 环绕通知
	*/
    //    @Around("pt1()")
    public Object aroundPrintLog(ProceedingJoinPoint pjp){

        Object rtValue = null;
        try {
            Object[] args = pjp.getArgs();//得到方法执行所需的参数

            System.out.println("Logger类中的aroundPrintLog方法开始记录日志了...前置");

            rtValue = pjp.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方法开始记录日志了...最终");
        }
    }
}


测试类AOPTest:

public class AOPTest {
    public static void main(String[] args) {
        //1.获取容器
        ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
        //2.获取对象
        IAccountService as = (IAccountService) ac.getBean("accountService");
        //3.执行方法
        as.saveAccount();

    }
}

我们知道,正常的通知顺序应该是:

  • 配置前置通知@Before: 在切入点方法执行之前执行
  • 配置后置通知@AfterReturning: 在切入点方法正常执行之后执行. 它和异常通知永远只能执行一个
  • 配置异常通知@AfterThrowing:在切入点方法执行产生异常之后执行. 它和后置通知永远只能执行一个
  • 配置最终通知@After: 无论切入点方法是否正常执行,它都会在其后面执行
  • 配置环绕通知@Around: 可以在代码中手动控制增强方法何时执行

使用注解配置通知时,产生后置通知与最终通知顺序颠倒的现象.
在这里插入图片描述

而使用环绕通知的方式则通知顺序正常
在这里插入图片描述
把Service实现类中的数学异常注释放开,执行结果也相同:即发生异常通知与最终通知顺序颠倒的现象

结论:Spring基于注解的AOP中, 这4个通知的执行调用顺序确实存在问题.因此,在我们的实际开发中,应该慎重考虑.
解决方案:

  1. 使用纯xml配置文件代替注解方式进行配置
  2. 在使用注解方式的前提下, 建议使用没有顺序问题的环绕通知. 此问题的原理待深入学习后再来填坑.
  • 0
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 10
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 10
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值