本文最后更新于:2024年9月8日 晚上
Spring AOP
- AOP(Aspect Oriented Programming)面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术,AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型,利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。

AOP 概念
在AOP编程中,我们经常会遇到下面的概念:
- Joinpoint:连接点,即定义在应用程序流程的何处插入切面的执行。
- Pointcut:切入点,即一组连接点的集合。
- Advice:增强,指特定连接点上执行的动作。
- Introduction:引介,特殊的增强,指为一个已有的Java对象动态地增加新的接口。
- Weaving:织入,将增强添加到目标类具体连接点上的过程。
- Aspect:切面,由切点和增强(引介)组成,包括了对横切关注功能的定义,已包括了对连接点的定义。

- Spring AOP 提供了 Advice 接口多个子接口来支持增强:
- 接口 MethodBeforeAdvice:在目标方法调用之前调用的Advice
- 接口 AfterReturningAdvice:在目标方法调用并返回之后调用的Advice
- 接口 MethodInterceptor:在目标方法的整个执行前后有效,并且有能力控制目标方法的执行。
- 接口 ThrowsAdvice:在目标方法抛出异常时调用的Advice
- 对应的注解如下。
- 前置通知(@Before):在目标方法调用之前调用通知。
- 后置通知(@After):在目标方法完成之后调用通知。
- 环绕通知(@Around):在被通知的方法调用之前和调用之后执行自定义的方法。
- 返回通知(@AfterReturning):在目标方法成功执行之后调用通知。
- 异常通知(@AfterThrowing):在目标方法抛出异常之后调用通知。
AOP 实现原理
AOP 实现的关键在于 AOP 框架自动创建的 AOP 代理,AOP 代理主要分为静态代理和动态代理,静态代理的代表为 AspectJ,而动态代理则以 Spring AOP 为代表。
- AspectJ 是静态代理的增强,所谓的静态代理就是 AOP 框架会在编译阶段生成 AOP 代理类,因此也称为编译时增强。
- Spring AOP 基于动态代理,主要有两种方式。
- JDK 动态代理:JDK 动态代理只提供接口的代理,不支持类的代理。JDK 会在运行时为目标类生成一个动态代理类$proxy*.class。该代理类是实现了接目标类接口的一个类,并且会实现接口所有的方法增强代码。调用时先去调用处理类进行增强.再通过反射的方式调用目标方法、从而实现 AOP
- CGLIB:如果代理类没有实现接口,那么 Spring AOP 会选择使用 CGLIB 来动态代理目标类。CGLIB 的底层是通过 ASM 在运行时动态的生成目标类的子类,并且会重写父类所有的方法增强代码,调用时先通过代理类进行增强,再直接调用父类对应的方法进行调用目标方法。从而实现 AOP。
- CGLIB 是通过继承的方式做的动态代理,因此如果某个类被标记为 final,那么它是无法使用 CGLIB 做动态代理的。
- CGLIB 除了生成目标子类代理类,还有一个 FastClass(路由类),可以(但不是必须)让本类方法调用进行增强,而不会像 jdk 代理那样本类方法调用增强会失效。
Spring
pom.xml
1 2 3 4 5 6 7 8 9 10
| <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aspects</artifactId> <version>${spring.version}</version> </dependency>
|
- 上述依赖会自动引入AspectJ,使用AspectJ实现AOP比较方便,因为它的定义比较简单。
通过 Spring API 实现AOP
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| public interface UserService {
public void add(); public void delete(); public void update(); public void search();
} @Service public class UserServiceImpl implements UserService{
@Override public void add() { System.out.println("增加用户"); }
@Override public void delete() { System.out.println("删除用户"); }
@Override public void update() { System.out.println("更新用户"); }
@Override public void search() { System.out.println("查询用户"); } }
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| @Component public class BeforeLog implements MethodBeforeAdvice {
@Override public void before(Method method, Object[] objects, Object o) throws Throwable { System.out.println( o.getClass().getName() + "的" + method.getName() + "方法被执行了"); } } @Component public class AfterLog implements AfterReturningAdvice { @Override public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable { System.out.println("执行了" + target.getClass().getName() +"的"+method.getName()+"方法," +"返回值:"+returnValue); } }
|
- 在Spring的配置文件中注册,并实现aop切入实现,注意导入约束。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| <?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" 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"> <aop:config> <aop:pointcut id="pointcut" expression="execution(* com.example.service.UserServiceImpl.*(..))"/> <aop:advisor advice-ref="beforeLog" pointcut-ref="pointcut"/> <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/> </aop:config>
</beans>
|
1 2 3 4 5 6 7 8
| public class MyTest { @Test void test(){ ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml"); UserService userService = (UserService) context.getBean("userService"); userService.search(); } }
|
- Spring的Aop就是将公共的业务(日志,安全等)和领域业务结合起来。
- 当执行领域业务时,将会把公共业务加进来,实现公共业务的重复利用,领域业务更纯粹,其本质还是动态代理。
自定义类来实现AOP
- 目标业务类不变依旧是userServiceImpl
- 编写自定义切入类。
1 2 3 4 5 6 7 8 9 10 11
| @Component public class DiyPointcut {
public void before(){ System.out.println("---------方法执行前---------"); } public void after(){ System.out.println("---------方法执行后---------"); }
}
|
1 2 3 4 5 6 7 8
| <aop:config> <aop:aspect ref="diy"> <aop:pointcut id="diyPonitcut" expression="execution(* com.example.service.UserServiceImpl.*(..))"/> <aop:before pointcut-ref="diyPonitcut" method="before"/> <aop:after pointcut-ref="diyPonitcut" method="after"/> </aop:aspect> </aop:config>
|
1 2 3 4 5 6 7 8
| public class MyTest { @Test void test(){ ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml"); UserService userService = (UserService) context.getBean("userService"); userService.add(); } }
|
使用注解实现AOP
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| @Aspect @Component public class AnnotationPointcut { @Before("execution(* com.example.service.UserServiceImpl.*(..))") public void before(){ System.out.println("---------方法执行前---------"); }
@After("execution(* com.example.service.UserServiceImpl.*(..))") public void after(){ System.out.println("---------方法执行后---------"); }
@Around("execution(* com.example.service.UserServiceImpl.*(..))") public void around(ProceedingJoinPoint jp) throws Throwable { System.out.println("环绕前"); System.out.println("签名:"+jp.getSignature()); Object proceed = jp.proceed(); System.out.println("环绕后"); System.out.println(proceed); } }
|
- 在Spring配置文件中增加支持注解的配置,或者在主启动类上添加一个@EnableAspectJAutoProxy注解,有了这个配置才能支持@Aspect等相关的一系列AOP注解的功能。
1
| <aop:aspectj-autoproxy/>
|
- aspectj-autoproxy
- 通过aop命名空间的
<aop:aspectj-autoproxy />
声明自动为Spring容器中那些配置@aspect
切面的bean创建代理,织入切面。
- Spring 在内部依旧采用
AnnotationAwareAspectJAutoProxyCreator
进行自动代理的创建工作,但具体实现的细节已经被<aop:aspectj-autoproxy />
隐藏起来了。
<aop:aspectj-autoproxy />
有一个proxy-target-class
属性,默认为false,表示使用JDK动态代理织入增强,当配为<aop:aspectj-autoproxy poxy-target-class="true"/>
时,表示使用CGLib动态代理技术织入增强,不过即使proxy-target-class
设置为false,如果目标类没有声明接口,则Spring将自动使用CGLib动态代理。
Spring Boot
pom.xml
1 2 3 4
| <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency>
|
表达式绑定方法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| @Aspect @Component public class LoggingAspect { @Before("execution(public * com.itranswarp.learnjava.service.UserService.*(..))") public void doAccessCheck() { System.err.println("[Before] do access check..."); }
@Around("execution(public * com.itranswarp.learnjava.service.MailService.*(..))") public Object doLogging(ProceedingJoinPoint pjp) throws Throwable { System.err.println("[Around] start " + pjp.getSignature()); Object retVal = pjp.proceed(); System.err.println("[Around] done " + pjp.getSignature()); return retVal; } }
|
注解绑定方法
- 我们以一个实际例子演示如何使用注解实现AOP装配,为了监控应用程序的性能,我们定义一个性能监控的注解。
1 2 3 4 5
| @Target(METHOD) @Retention(RUNTIME) public @interface MetricTime { String value(); }
|
1 2 3 4 5 6 7 8 9
| @Component public class UserService { @MetricTime("register") public User register(String email, String password, String name) { ... } ... }
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| @Aspect @Component public class MetricAspect {
@Pointcut("@annotation(com.example.annotation.metricTime)") private void pointcut() { }
@Around("pointcut() && @annotation(metricTime)") public Object metric(ProceedingJoinPoint joinPoint, MetricTime metricTime) throws Throwable { String name = metricTime.value(); long start = System.currentTimeMillis(); try { return joinPoint.proceed(); } finally { long t = System.currentTimeMillis() - start; System.err.println("[Metrics] " + name + ": " + t + "ms"); } } }
|
- 注意
metric()
方法标注了@Around("@annotation(metricTime)")
,它的意思是,符合条件的目标方法是带有@MetricTime
注解的方法,因为metric()
方法参数类型是MetricTime
(注意参数名是metricTime
不是MetricTime
),我们通过它获取性能监控的名称。
- 有了
@MetricTime
注解,再配合MetricAspect
,任何Bean,只要方法标注了@MetricTime
注解,就可以自动实现性能监控,运行代码,输出结果如下:
1 2
| Welcome, Bob! [Metrics] register: 16ms
|