(十一)、AOP :面向切面编程基础

前面说了很多DI相关的知识,现在我们一起讨论一下AOP。

基础定义

切点定义

使用Pointcut注解,具体详见execution

// * 代表任意返回类型, com.pch.test.Test.test代表指定类方法 (..)代表任意参数
execution(* com.pch.test.Test.test(..))

// 与:&&         或:||       非:!
execution(* com.pch.test.Test.test(..) && within(com.pch.test.*))
表示必须匹配两个条件

// 指定bean
execution(* com.pch.test.Test.test(..) && bean('test'))
表示只有特定的bean,才能执行切点

通知定义

  • 前置通知:@Before
  • 后置通知:@After
  • 返回通知:@AfterReturn
  • 异常通知:@AfterThrowing
  • 环绕通知:@Around,切点执行前后都会通知

切面定义

通过@Aspect注解定义切面

@Aspect
@Component
public class TestAspect {
 
    @Pointcut("execution(public * com.pch.test.dao.*.*(..))")
    public void pointcutA() {
    }

    /**
     *  前置通知
     */
    @Before("pointcutA()")
    public void beforeMethod() {
    }
}

启用自主代理

使用@EnableAspectJAutoProxy注解

@EnableAspectJAutoProxy
@Configuration
@ComponentScan
public class TestConfig {
}

通知中的参数

args表示test的指定参数为num,也会传递到通知中去。

@Aspect
@Component
public class TestAspect {

    @Pointcut("execution(public * com.pch.test.T(int) && args(num))")
    public void daoJoinPointExpression(int num) {
    }

    @Before("daoJoinPointExpression(num)")
    public void beforeDAOMethod(int num) {
    }
}

使用JoinPoint

@Aspect
@Component
public class TestAspect {
 
    /**
     *  添加切点
     *  com.pch.test.dao包下的所有public方法,不包含子包
     */
    @Pointcut("execution(public * com.pch.test.dao.*.*(..))")
    public void daoJoinPointExpression() {
    }

    /**
     *  前置通知
     */
    @Before("daoJoinPointExpression()")
    public void beforeDAOMethod(JoinPoint joinPoint) {
    }

    /**
     *  返回通知
     */
    @AfterReturning(value = "daoJoinPointExpression()", returning = "result")
    public void afterDAOReturnMethod(JoinPoint joinPoint, Object result) {
    }
}

这个JoinPoint也是我们常用的方法。
JoinPoint常用方法

// 获取切点的方法名
String method = joinPoint.getSignature().getName();

// 获取切点方法参数
joinPoint.getArgs()

// 获取连接点所在的目标对象; 
getTarget()

// 获取代理对象本身
getThis()
其他方法,可以查找接口类
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值