AOP(Aspect Oriented Programming)是一种设计思想,是软件设计领域中的面向切面编程,它是面向对象编程的一种补充和完善,它以通过预编译方式和运行期动态代理方式实现,在不修改源代码的情况下,给程序动态统一添加额外功能的一种技术。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
相关术语:
<dependencies>
<!--spring context依赖-->
<!--当你引入Spring Context依赖之后,表示将Spring的基础依赖引入了-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<!--spring aop依赖-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</dependency>
<!--spring aspects依赖-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aspects</artifactId>
</dependency>
<!--junit5测试-->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<!--log4j2的依赖-->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j2-impl</artifactId>
</dependency>
</dependencies>
被代理类
/**
* @author giserDev
* @description
* @date 2024-01-06 23:41:26
*/
public interface Calculator {
int add(int i, int j);
int sub(int i, int j);
int mul(int i, int j);
int div(int i, int j);
}
/**
* @author giserDev
* @description
* @date 2024-01-06 23:41:55
*/
@Service
public class CalculatorImpl implements Calculator {
@Override
public int add(int i, int j) {
int result = i + j;
// 测试异常通知
// int p = 1/0;
System.out.println("方法内部 result = " + result);
return result;
}
@Override
public int sub(int i, int j) {
int result = i - j;
System.out.println("方法内部 result = " + result);
return result;
}
@Override
public int mul(int i, int j) {
int result = i * j;
System.out.println("方法内部 result = " + result);
return result;
}
@Override
public int div(int i, int j) {
int result = i / j;
System.out.println("方法内部 result = " + result);
return result;
}
}
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.*;
import org.springframework.stereotype.Component;
import java.util.Arrays;
/**
* @author giserDev
* @description
*
* * @Aspect 标注当前类为切面类
* * @Component 将切面类交由Spring管理
*
* 各种通知的执行顺序:
* - Spring版本5.3.x以前:
* - 前置通知
* - 目标操作
* - 后置通知
* - 返回通知或异常通知
*
* - Spring版本5.3.x以后:
* - 前置通知
* - 目标操作
* - 返回通知或异常通知
* - 后置通知
*
* @date 2024-01-07 17:22:19
*/
@Aspect
@Component
public class LogAspect {
/**
* 前置通知:使用@Before注解标识,在被代理的目标方法前执行
* @param joinPoint 连接点
*/
@Before(value = "execution(* com.giser.spring6.aop.impl.CalculatorImpl.*(..))")
public void beforeAspectMethod(JoinPoint joinPoint){
String methodName = joinPoint.getSignature().getName();
String argStr = Arrays.toString(joinPoint.getArgs());
System.out.println("切面-->前置通知,方法名:" + methodName + ",参数:" + argStr);
}
/**
* 后置通知:使用@After注解标识,在被代理的目标方法最终结束后执行
*
* @param joinPoint 连接点
*/
@After(value = "execution(* com.giser.spring6.aop.impl.CalculatorImpl.*(..))")
public void afterAspectMethod(JoinPoint joinPoint){
String methodName = joinPoint.getSignature().getName();
String argStr = Arrays.toString(joinPoint.getArgs());
System.out.println("切面-->后置通知,方法名:" + methodName + ",参数:" + argStr);
}
/**
* 返回通知:使用@AfterReturning注解标识,在被代理的目标方法成功结束后执行
* @param joinPoint 连接点
* @param retVal 返回值
*/
@AfterReturning(value = "execution(* com.giser.spring6.aop.impl.CalculatorImpl.*(..))", returning = "retVal")
public void afterReturningAspectMethod(JoinPoint joinPoint, Object retVal){
String methodName = joinPoint.getSignature().getName();
System.out.println("切面-->返回后通知,方法名:" + methodName + ",结果:" + retVal);
}
/**
* 异常通知:使用@AfterThrowing注解标识,在被代理的目标方法异常结束后执行
* @param joinPoint 连接点
* @param ex 异常
*/
@AfterThrowing(value = "execution(* com.giser.spring6.aop.impl.CalculatorImpl.*(..))", throwing = "ex")
public void afterThrowingAspectMethod(JoinPoint joinPoint, Throwable ex){
String methodName = joinPoint.getSignature().getName();
System.out.println("切面-->异常通知,方法名:" + methodName + ",异常:" + ex);
}
/**
* 环绕通知:使用@Around注解标识,使用try...catch...finally结构围绕整个被代理的目标方法,包括上面四种通知对应的所有位置
* @param proceedingJoinPoint 连接点
* @return 返回值
*/
@Around(value = "execution(* com.giser.spring6.aop.impl.CalculatorImpl.*(..))")
public Object aroundAspectMethod(ProceedingJoinPoint proceedingJoinPoint){
String methodName = proceedingJoinPoint.getSignature().getName();
String argStr = Arrays.toString(proceedingJoinPoint.getArgs());
System.out.println("切面-->环绕通知,方法名:" + methodName + ",参数:" + argStr);
Object result = null;
try {
System.out.println("切面-->环绕通知-->目标对象方法执行之前");
//目标对象(连接点)方法的执行
result = proceedingJoinPoint.proceed();
System.out.println("切面-->环绕通知-->目标对象方法返回值之后");
} catch (Throwable throwable) {
throwable.printStackTrace();
System.out.println("切面-->环绕通知-->目标对象方法出现异常时");
} finally {
System.out.println("切面-->环绕通知-->目标对象方法执行完毕");
}
return result;
}
}
spring-aop.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:context="http://www.springframework.org/schema/context"
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/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">
<!--
基于注解的AOP的实现:
1、将目标对象和切面交给IOC容器管理(注解+扫描)
2、开启AspectJ的自动代理,为目标对象自动生成代理
3、将切面类通过注解@Aspect标识
-->
<context:component-scan base-package="com.giser.spring6.aop" />
<aop:aspectj-autoproxy />
</beans>
/**
* @author giserDev
* @description 动态代理测试
* @date 2024-01-07 00:02:54
*/
public class AopTest {
public static void main(String[] args) {
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-aop.xml");
Calculator calculator = applicationContext.getBean(Calculator.class);
calculator.add(3,4);
}
}
package com.giser.spring6.aop.aspect;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.*;
import org.springframework.stereotype.Component;
import java.util.Arrays;
/**
* @author giserDev
* @description 切点表达式
* ① 声明:
* @Pointcut(value = "execution(* com.giser.spring6.aop.impl.CalculatorImpl.*(..))")
* public void pointcut(){}
*
* 剖析:execution(public int com.giser.spring6.aop.impl.CalculatorImpl.add(int,int))
* execution: 固定格式
*
* public : 修饰符
* int : 方法返回值
* public int 可写为 * , 表示任意权限修饰符和返回值,如execution(* com.giser.spring6.aop.impl.*.*(..))
* 用*号代替“权限修饰符”和“返回值”部分表示“权限修饰符”和“返回值”不限
*
* com.giser.spring6.aop.impl.CalculatorImpl : 方法所在类所在全类名
* 这里可以写*表示任意包名
* 写*..表示任意包名且包下任意层级的包
* CalculatorImpl : 包下的某个类名
* 类名全部用*代替,可表示包下所有的类名,
* 类名部分用*代替,如*Service可表示包下所有以Service结尾的类或接口
*
* add : 代表方法名,
* 方法名全部用*代替,表示任意的方法名
* 方法名部分用*代替,如delete*,表示以delete开头的方法
*
* (int,int) : 代表参数列表,使用(..)表示参数任意
*
* 在包名的部分,一个“*”号只能代表包的层次结构中的一层,表示这一层是任意的。
* 在包名的部分,使用“*..”表示包名任意、包的层次深度任意。
* 在类名的部分,类名部分整体用*号代替,表示类名任意。
* 在类名的部分,可以使用*号代替类名的一部分。
* 在方法名部分,可以使用*号表示方法名任意。
* 在方法名部分,可以使用*号代替方法名的一部分。
* 在方法参数列表部分,使用(..)表示参数列表任意。
* 在方法参数列表部分,使用(int,..)表示参数列表以一个int类型的参数开头。
* 在方法参数列表部分,基本数据类型和对应的包装类型是不一样的。
* 在方法返回值部分,如果想要明确指定一个返回值类型,那么必须同时写明权限修饰符
* 例如:execution(public int ..Service.*(.., int)) 正确
* 例如:execution(* int ..Service.*(.., int)) 错误
*
* ② 使用:
* 在同一个切面使用
* @Before("pointcut()")
* public void beforeAspectMethod(JoinPoint joinPoint){
* String methodName = joinPoint.getSignature().getName();
* String argStr = Arrays.toString(joinPoint.getArgs());
* System.out.println("切面-->前置通知,方法名:" + methodName + ",参数:" + argStr);
* }
* 切面的优先级:
* 相同目标方法上同时存在多个切面时,切面的优先级控制切面的内外嵌套顺序。
* - 优先级高的切面:外面
* - 优先级低的切面:里面
*
* 使用@Order注解可以控制切面的优先级:
* - @Order(较小的数):优先级高
* - @Order(较大的数):优先级低
*
* 不在同一个切面使用
* @Before("com.giser.spring6.aop.aspect.PointCutExpressionAspect.pointcut()")
* public void beforeAspectMethod(JoinPoint joinPoint){
* String methodName = joinPoint.getSignature().getName();
* String argStr = Arrays.toString(joinPoint.getArgs());
* System.out.println("切面-->前置通知,方法名:" + methodName + ",参数:" + argStr);
* }
*
* @date 2024-01-07 17:22:19
*
*/
@Aspect
@Component
public class PointCutExpressionAspect {
@Pointcut(value = "execution(* com.giser.spring6.aop.impl.*.*(..))")
public void pointcut(){}
/**
* 前置通知:使用@Before注解标识,在被代理的目标方法前执行
* @param joinPoint 连接点
*/
@Before("pointcut()")
public void beforeAspectMethod(JoinPoint joinPoint){
String methodName = joinPoint.getSignature().getName();
String argStr = Arrays.toString(joinPoint.getArgs());
System.out.println("切面-->前置通知,方法名:" + methodName + ",参数:" + argStr);
}
/**
* 后置通知:使用@After注解标识,在被代理的目标方法最终结束后执行
*
* @param joinPoint 连接点
*/
@After(value = "pointcut()")
public void afterAspectMethod(JoinPoint joinPoint){
String methodName = joinPoint.getSignature().getName();
String argStr = Arrays.toString(joinPoint.getArgs());
System.out.println("切面-->后置通知,方法名:" + methodName + ",参数:" + argStr);
}
/**
* 返回通知:使用@AfterReturning注解标识,在被代理的目标方法成功结束后执行
* @param joinPoint 连接点
* @param retVal 返回值
*/
@AfterReturning(value = "pointcut()", returning = "retVal")
public void afterReturningAspectMethod(JoinPoint joinPoint, Object retVal){
String methodName = joinPoint.getSignature().getName();
System.out.println("切面-->返回后通知,方法名:" + methodName + ",结果:" + retVal);
}
/**
* 异常通知:使用@AfterThrowing注解标识,在被代理的目标方法异常结束后执行
* @param joinPoint 连接点
* @param ex 异常
*/
@AfterThrowing(value = "pointcut()", throwing = "ex")
public void afterThrowingAspectMethod(JoinPoint joinPoint, Throwable ex){
String methodName = joinPoint.getSignature().getName();
System.out.println("切面-->异常通知,方法名:" + methodName + ",异常:" + ex);
}
/**
* 环绕通知:使用@Around注解标识,使用try...catch...finally结构围绕整个被代理的目标方法,包括上面四种通知对应的所有位置
* @param proceedingJoinPoint 连接点
* @return 返回值
*/
@Around(value = "pointcut()")
public Object aroundAspectMethod(ProceedingJoinPoint proceedingJoinPoint){
String methodName = proceedingJoinPoint.getSignature().getName();
String argStr = Arrays.toString(proceedingJoinPoint.getArgs());
System.out.println("切面-->环绕通知,方法名:" + methodName + ",参数:" + argStr);
Object result = null;
try {
System.out.println("切面-->环绕通知-->目标对象方法执行之前");
//目标对象(连接点)方法的执行
result = proceedingJoinPoint.proceed();
System.out.println("切面-->环绕通知-->目标对象方法返回值之后");
} catch (Throwable throwable) {
throwable.printStackTrace();
System.out.println("切面-->环绕通知-->目标对象方法出现异常时");
} finally {
System.out.println("切面-->环绕通知-->目标对象方法执行完毕");
}
return result;
}
}
<dependencies>
<!--spring context依赖-->
<!--当你引入Spring Context依赖之后,表示将Spring的基础依赖引入了-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<!--spring aop依赖-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</dependency>
<!--spring aspects依赖-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aspects</artifactId>
</dependency>
<!--junit5测试-->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<!--log4j2的依赖-->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j2-impl</artifactId>
</dependency>
</dependencies>
被代理类
/**
* @author giserDev
* @description
* @date 2024-01-06 23:41:26
*/
public interface Calculator {
int add(int i, int j);
int sub(int i, int j);
int mul(int i, int j);
int div(int i, int j);
}
/**
* @author giserDev
* @description
* @date 2024-01-06 23:41:55
*/
@Service
public class CalculatorImpl implements Calculator {
@Override
public int add(int i, int j) {
int result = i + j;
// 测试异常通知
// int p = 1/0;
System.out.println("方法内部 result = " + result);
return result;
}
@Override
public int sub(int i, int j) {
int result = i - j;
System.out.println("方法内部 result = " + result);
return result;
}
@Override
public int mul(int i, int j) {
int result = i * j;
System.out.println("方法内部 result = " + result);
return result;
}
@Override
public int div(int i, int j) {
int result = i / j;
System.out.println("方法内部 result = " + result);
return result;
}
}
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.*;
import org.springframework.stereotype.Component;
import java.util.Arrays;
/**
* @author giserDev
* @description 切点表达式
* ① 声明:
* @Pointcut(value = "execution(* com.giser.spring6.aop.impl.CalculatorImpl.*(..))")
* public void pointcut(){}
*
* 剖析:execution(public int com.giser.spring6.aop.impl.CalculatorImpl.add(int,int))
* execution: 固定格式
*
* public : 修饰符
* int : 方法返回值
* public int 可写为 * , 表示任意权限修饰符和返回值,如execution(* com.giser.spring6.aop.impl.*.*(..))
* 用*号代替“权限修饰符”和“返回值”部分表示“权限修饰符”和“返回值”不限
*
* com.giser.spring6.aop.impl.CalculatorImpl : 方法所在类所在全类名
* 这里可以写*表示任意包名
* 写*..表示任意包名且包下任意层级的包
* CalculatorImpl : 包下的某个类名
* 类名全部用*代替,可表示包下所有的类名,
* 类名部分用*代替,如*Service可表示包下所有以Service结尾的类或接口
*
* add : 代表方法名,
* 方法名全部用*代替,表示任意的方法名
* 方法名部分用*代替,如delete*,表示以delete开头的方法
*
* (int,int) : 代表参数列表,使用(..)表示参数任意
*
* 在包名的部分,一个“*”号只能代表包的层次结构中的一层,表示这一层是任意的。
* 在包名的部分,使用“*..”表示包名任意、包的层次深度任意。
* 在类名的部分,类名部分整体用*号代替,表示类名任意。
* 在类名的部分,可以使用*号代替类名的一部分。
* 在方法名部分,可以使用*号表示方法名任意。
* 在方法名部分,可以使用*号代替方法名的一部分。
* 在方法参数列表部分,使用(..)表示参数列表任意。
* 在方法参数列表部分,使用(int,..)表示参数列表以一个int类型的参数开头。
* 在方法参数列表部分,基本数据类型和对应的包装类型是不一样的。
* 在方法返回值部分,如果想要明确指定一个返回值类型,那么必须同时写明权限修饰符
* 例如:execution(public int ..Service.*(.., int)) 正确
* 例如:execution(* int ..Service.*(.., int)) 错误
*
* ② 使用:
* 在同一个切面使用
* @Before("pointcut()")
* public void beforeAspectMethod(JoinPoint joinPoint){
* String methodName = joinPoint.getSignature().getName();
* String argStr = Arrays.toString(joinPoint.getArgs());
* System.out.println("切面-->前置通知,方法名:" + methodName + ",参数:" + argStr);
* }
*
* 不在同一个切面使用
* @Before("com.giser.spring6.aop.aspect.PointCutExpressionAspect.pointcut()")
* public void beforeAspectMethod(JoinPoint joinPoint){
* String methodName = joinPoint.getSignature().getName();
* String argStr = Arrays.toString(joinPoint.getArgs());
* System.out.println("切面-->前置通知,方法名:" + methodName + ",参数:" + argStr);
* }
*
* 切面的优先级:
* 相同目标方法上同时存在多个切面时,切面的优先级控制切面的内外嵌套顺序。
* - 优先级高的切面:外面
* - 优先级低的切面:里面
*
* 使用@Order注解可以控制切面的优先级:
* - @Order(较小的数):优先级高
* - @Order(较大的数):优先级低
*
* @date 2024-01-07 17:22:19
*
*/
@Aspect
@Component
//@Order(0)
public class PointCutExpressionAspect {
@Pointcut(value = "execution(* com.giser.spring6.aopxml.impl.*.*(..))")
public void pointcut(){}
/**
* 前置通知:使用@Before注解标识,在被代理的目标方法前执行
* @param joinPoint 连接点
*/
@Before("pointcut()")
public void beforeAspectMethod(JoinPoint joinPoint){
String methodName = joinPoint.getSignature().getName();
String argStr = Arrays.toString(joinPoint.getArgs());
System.out.println("切面-->前置通知,方法名:" + methodName + ",参数:" + argStr);
}
/**
* 后置通知:使用@After注解标识,在被代理的目标方法最终结束后执行
*
* @param joinPoint 连接点
*/
@After(value = "pointcut()")
public void afterAspectMethod(JoinPoint joinPoint){
String methodName = joinPoint.getSignature().getName();
String argStr = Arrays.toString(joinPoint.getArgs());
System.out.println("切面-->后置通知,方法名:" + methodName + ",参数:" + argStr);
}
/**
* 返回通知:使用@AfterReturning注解标识,在被代理的目标方法成功结束后执行
* @param joinPoint 连接点
* @param retVal 返回值
*/
@AfterReturning(value = "pointcut()", returning = "retVal")
public void afterReturningAspectMethod(JoinPoint joinPoint, Object retVal){
String methodName = joinPoint.getSignature().getName();
System.out.println("切面-->返回后通知,方法名:" + methodName + ",结果:" + retVal);
}
/**
* 异常通知:使用@AfterThrowing注解标识,在被代理的目标方法异常结束后执行
* @param joinPoint 连接点
* @param ex 异常
*/
@AfterThrowing(value = "pointcut()", throwing = "ex")
public void afterThrowingAspectMethod(JoinPoint joinPoint, Throwable ex){
String methodName = joinPoint.getSignature().getName();
System.out.println("切面-->异常通知,方法名:" + methodName + ",异常:" + ex);
}
/**
* 环绕通知:使用@Around注解标识,使用try...catch...finally结构围绕整个被代理的目标方法,包括上面四种通知对应的所有位置
* @param proceedingJoinPoint 连接点
* @return 返回值
*/
@Around(value = "pointcut()")
public Object aroundAspectMethod(ProceedingJoinPoint proceedingJoinPoint){
String methodName = proceedingJoinPoint.getSignature().getName();
String argStr = Arrays.toString(proceedingJoinPoint.getArgs());
System.out.println("切面-->环绕通知,方法名:" + methodName + ",参数:" + argStr);
Object result = null;
try {
System.out.println("切面-->环绕通知-->目标对象方法执行之前");
//目标对象(连接点)方法的执行
result = proceedingJoinPoint.proceed();
System.out.println("切面-->环绕通知-->目标对象方法返回值之后");
} catch (Throwable throwable) {
throwable.printStackTrace();
System.out.println("切面-->环绕通知-->目标对象方法出现异常时");
} finally {
System.out.println("切面-->环绕通知-->目标对象方法执行完毕");
}
return result;
}
}
spring-aop.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:context="http://www.springframework.org/schema/context"
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/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">
<!--
基于注解的AOP的实现:
1、将目标对象和切面交给IOC容器管理(注解+扫描)
2、开启AspectJ的自动代理,为目标对象自动生成代理
3、将切面类通过注解@Aspect标识
-->
<context:component-scan base-package="com.giser.spring6.aopxml" />
<aop:config>
<!--配置切面类-->
<aop:aspect ref="pointCutExpressionAspect">
<aop:pointcut id="pointcut" expression="execution(* com.giser.spring6.aopxml.impl.CalculatorImpl.*(..))"/>
<aop:before method="beforeAspectMethod" pointcut-ref="pointcut"/>
<aop:after method="afterAspectMethod" pointcut-ref="pointcut" />
<aop:after-returning method="afterReturningAspectMethod" pointcut-ref="pointcut" returning="retVal" />
<aop:after-throwing method="afterThrowingAspectMethod" pointcut-ref="pointcut" throwing="ex" />
<aop:around method="aroundAspectMethod" pointcut-ref="pointcut" />
</aop:aspect>
</aop:config>
</beans>
import com.giser.spring6.aopxml.Calculator;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* @author giserDev
* @description 动态代理测试
* @date 2024-01-07 00:02:54
*/
public class AopXmlTest {
public static void main(String[] args) {
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-aop-xml.xml");
Calculator calculator = applicationContext.getBean(Calculator.class);
calculator.add(3,4);
}
}