用aspectj拦截mybatis mapper的一种可行方案

实现的大致步骤
1、我们的mapper层接口统一实现一个接口比如Mapper接口
2、Aspect切面定义时候切点匹配用this或者target eg:
MethodInvocation methodInvocation = ExposeInvocationInterceptor.currentInvocation();这个句有值是因为Mapper代理的增强第一个就是ExposeInvocationInterceptor这个增强器会设置当前方法的MethodInvocation

@Aspect
@Order(value = Integer.MIN_VALUE + 3)
public class TestAspect3 {

    @Pointcut("this (org.springframework.jdbc.component.mapper.Mapper)")
    public void pointcut(){}


    @Around(value = "pointcut()")
    public Object around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
        Object proceed = null;
        MethodInvocation methodInvocation = ExposeInvocationInterceptor.currentInvocation();
        if (methodInvocation != null){
            Annotation[] annotations = methodInvocation.getMethod().getAnnotations();
            if (annotations !=null){
                  for (Annotation annotation : annotations){
                      if (annotation.annotationType().equals(Test.class)){
                          Test test = (Test) annotation;
                          String times = test.times();
                          Object[] args = proceedingJoinPoint.getArgs();
                          System.out.println("TestAspect2 123");
                          System.out.println("TestAspect2 456");
                          for (int i = 0;i < Integer.parseInt(times);++i){
                              proceed = proceedingJoinPoint.proceed(proceedingJoinPoint.getArgs());
                          }
                          return proceed;
                      }
                  }
            }

        }
        proceed = proceedingJoinPoint.proceed(proceedingJoinPoint.getArgs());

        return proceed;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值