前面说了很多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()
其他方法,可以查找接口类