SpringAOP 面试题

什么是AOP?

AOP通常叫面向切面编程(Aspect-oriented Programming,简称AOP),它是一种编程范式,通过预编译的方式和运行期动态代理实现程序功能的统一维护的一种技术。
通常用来对隔离不同业务逻辑,比如常见的事务管理、日志管理等。同时实现AOP的方式也有两种:cglib 以及 jdk两种方式来实现。
2021-09-09-12-17-52-081984.jpeg

为什么要有AOP?

假设现在有几个实现方法,需要做日志处理,正常来说只需要手动添加一下日志就可以了,在真正的业务代码中,代码行数,以及方法数那是一个天文数字,如果都要手动添加那工作量不现实。
本着作为程序员因该想着怎么合理的偷懒的习惯,所以应该想办法提高效率。
AOP因此就产生了,说白了AOP就是通过某种匹配规则去匹配方法,然后再添加对应的日志处理。而AOP本身的实现方式就是通过ASM字节码框架动态生成技术,在程序运行的时候,根据需求(添加文件)动态创建字节码文件,之前讲的设计模式中动态代理模式中也有讲到,大家可以再去复习一下。

AOP的核心概念

  • 切面(Aspect):似于 Java 中的类声明,常用于应用中配置事务或者日志管理。一般使用 @Aspect 注解或者 <aop:aspect> 来定义一个切面。
  • 连接点(Join Point):程序执行中的特定点,比如方法执行、处理一个异常等
  • 切点(Pointcut):通过一种规则匹配的正则表达式,当有连接点可以匹配到切点时,就会触发改切点相关联的指定通知。
  • 通知(Advice):在切面中某个连接点采取的动作,通知方式也有5种
    • around(环绕通知):前后都加
    • before(前置通知)
    • after(后置通知)
    • exception(异常通知)
    • return(返回通知)
  • 织入(Weaving):链接切面和目标对象创建一个通知对象的过程。

AOP其实就是一种编程思想,而这上面的这个点就是编程的具体实现规范。
一个应用中可以有多种通知方式所以在AOP中引入一种设计模式责任链模式通过这这种模式来顺序执行每一个通知当然也可以使用@Order注解,配置数字越小,越先执行。

AOP的执行过程

之前跟大家聊IOC的时候跟大家聊过它的启动过程,同样的AOP也有指定的执行流程,但是需要IOC作为基础。

  • IOC容器启动,用来存放对象
  • 进行对象的实例化和初始化操作,将生成的完成的对象存放到容器中(容器运行中的一些对象比如BeanFactoryProcessermethodInterceptore等还有其他的很多对象)
  • 从创建好的容器中获取需要对象
  • 调用具体的方法开始调用

说了这么多理论知识,要想知道里面的具体执行流程,还是老样子,一步一步debug进入源码查看流程了
首先还是需要先准备配置一个切面

  1. @Aspect
  2. @Component
  3. public class LogUtil {
  4. @Pointcut("execution(public * com.ao.bing.demo.spring.aop..*.*(..))")
  5. public void pctMethod() {
  6. }
  7. @Around(value = "pctMethod()")
  8. public Object around(ProceedingJoinPoint pjp) throws Throwable {
  9. Object ret = pjp.proceed();
  10. System.out.println("Around advice");
  11. return ret;
  12. }
  13. @Before("pctMethod()")
  14. public void before() {
  15. System.out.println("Before advice");
  16. }
  17. @After(value = "pctMethod()")
  18. public void after() {
  19. System.out.println("After advice");
  20. }
  21. @AfterReturning(value = "pctMethod()")
  22. public void afterReturning() {
  23. System.out.println("AfterReturning advice");
  24. }
  25. @AfterThrowing(value = "pctMethod()")
  26. public void afterThrowing() {
  27. System.out.println("AfterThrowing advice");
  28. }
  29. // mian方法测试demo
  30. public static void main(String[] args) {
  31. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
  32. AopTestDemo aopTestDemo = applicationContext.getBean(AopTestDemo.class);
  33. aopTestDemo.method("测试AOP");
  34. }
  35. }

这里配置一个LogUtil的切面demo,五种通知都写了一遍,同时也有一个main方法测试。准备工作做完了就正式开始debug代码了
2021-09-09-12-17-52-359962.jpeg
首先在aopTestDemo里面打上断点,此时过去的bean对象aopTestDemo已经是通过动态代理生成的对象了,其中这里面有很多的CALLBACK方法属性。那写方法属性是什么呢?
其实这里面就又跟Spring的拦截器有关,其实就是一种设计模式观察者模式说白了就是对对象的一种行为的监听。通过回调机制来实现通知的功能。
那既然是回调方法,那就先进DynamicAdvisedInterceptor方法中

  1. private static class DynamicAdvisedInterceptor implements MethodInterceptor, Serializable {
  2. private final AdvisedSupport advised;
  3. public DynamicAdvisedInterceptor(AdvisedSupport advised) {
  4. this.advised = advised;
  5. }
  6. @Nullable
  7. public Object intercept(Object proxy, Method method, Object[] args, MethodProxy methodProxy) throws Throwable {
  8. Object oldProxy = null;
  9. boolean setProxyContext = false;
  10. Object target = null;
  11. TargetSource targetSource = this.advised.getTargetSource();
  12. Object var16;
  13. try {
  14. if (this.advised.exposeProxy) {
  15. oldProxy = AopContext.setCurrentProxy(proxy);
  16. setProxyContext = true;
  17. }
  18. target = targetSource.getTarget();
  19. Class<?> targetClass = target != null ? target.getClass() : null;
  20. // 从advised中 获取配置好的AOP的通知方法 -重点
  21. List<Object> chain = this.advised.getInterceptorsAndDynamicInterceptionAdvice(method, targetClass);
  22. Object retVal;
  23. // 如果没有配置通知方法,则直接调用target对象的调用方法
  24. if (chain.isEmpty() && Modifier.isPublic(method.getModifiers())) {
  25. Object[] argsToUse = AopProxyUtils.adaptArgumentsIfNecessary(method, args);
  26. retVal = methodProxy.invoke(target, argsToUse);
  27. } else {
  28. // 通过CglibMethodInvocation来启动advice通知 - 重点
  29. retVal = (new CglibAopProxy.CglibMethodInvocation(proxy, target, method, args, targetClass, chain, methodProxy)).proceed();
  30. }
  31. retVal = CglibAopProxy.processReturnType(proxy, target, method, retVal);
  32. var16 = retVal;
  33. } finally {
  34. if (target != null && !targetSource.isStatic()) {
  35. targetSource.releaseTarget(target);
  36. }
  37. if (setProxyContext) {
  38. AopContext.setCurrentProxy(oldProxy);
  39. }
  40. }
  41. return var16;
  42. }

DynamicAdvisedInterceptor中有一个List<Object> chain这里获取到配置的通知方法
2021-09-09-12-17-52-637960.jpeg
从上面的截图可以看到Spring先是把所有的通知获取到,放在一个list集合对象中,因为此时list不为空所以就又会走到 通过CglibMethodInvocation来启动advice通知这一步的流程中

  1. public class ReflectiveMethodInvocation implements ProxyMethodInvocation, Cloneable {
  2. protected final Object proxy;
  3. @Nullable
  4. protected final Object target;
  5. protected final Method method;
  6. protected Object[] arguments = new Object[0];
  7. @Nullable
  8. private final Class<?> targetClass;
  9. /**
  10. * Lazily initialized map of user-specific attributes for this invocation.
  11. */
  12. @Nullable
  13. private Map<String, Object> userAttributes;
  14. /**
  15. * List of MethodInterceptor and InterceptorAndDynamicMethodMatcher
  16. * that need dynamic checks.
  17. */
  18. protected final List<?> interceptorsAndDynamicMethodMatchers;
  19. /**
  20. * Index from 0 of the current interceptor we're invoking.
  21. * -1 until we invoke: then the current interceptor.
  22. */
  23. private int currentInterceptorIndex = -1;
  24. // 省略其他的方法
  25. @Override
  26. @Nullable
  27. public Object proceed() throws Throwable {
  28. // We start with an index of -1 and increment early.
  29. // 从索引为-1的拦截器还是调用,并且按顺序递增,如果整个List chain中调用完毕,则开始调用target的函数
  30. // 具体的实现方式在AOPUtils.invokeJoinpointUsingRefection方法中,说白了就是通过反射实现目标方法
  31. if (this.currentInterceptorIndex == this.interceptorsAndDynamicMethodMatchers.size() - 1) {
  32. return invokeJoinpoint();
  33. }
  34. // 获取下一个需要执行的拦截器,沿着定义好的interceptorOrInterceptionAdvice的链进行处理
  35. Object interceptorOrInterceptionAdvice =
  36. this.interceptorsAndDynamicMethodMatchers.get(++this.currentInterceptorIndex);
  37. if (interceptorOrInterceptionAdvice instanceof InterceptorAndDynamicMethodMatcher) {
  38. // Evaluate dynamic method matcher here: static part will already have
  39. // been evaluated and found to match.
  40. // 对拦截器进行动态匹配,如果和定义的pointcut匹配 则就会执行当前的这个advice
  41. InterceptorAndDynamicMethodMatcher dm =
  42. (InterceptorAndDynamicMethodMatcher) interceptorOrInterceptionAdvice;
  43. Class<?> targetClass = (this.targetClass != null ? this.targetClass : this.method.getDeclaringClass());
  44. if (dm.methodMatcher.matches(this.method, targetClass, this.arguments)) {
  45. return dm.interceptor.invoke(this);
  46. }
  47. else {
  48. // Dynamic matching failed.
  49. // Skip this interceptor and invoke the next in the chain.
  50. return proceed();
  51. }
  52. }
  53. else {
  54. // It's an interceptor, so we just invoke it: The pointcut will have
  55. // been evaluated statically before this object was constructed.
  56. // 普通拦截器,直接调用拦截器,将当前的this(CglibMethodInvocation)作为参数保证当前实例中调用链的执行
  57. return ((MethodInterceptor) interceptorOrInterceptionAdvice).invoke(this);
  58. }
  59. }
  60. // 省略其他的方法
  61. }

这里需要注意的一点 从上面的源码中currentInterceptorIndex默认值定义为-1,相当于是作为判断当前通知链式是执行完成,执行完那就是直接通过反射调用目标方法,否者向下接着执行。
((MethodInterceptor) interceptorOrInterceptionAdvice).invoke(this)
interceptorOrInterceptionAdvice这个方法是关键点,即具体的调用拦截器去执行具体的方法

  1. public final class ExposeInvocationInterceptor implements MethodInterceptor, PriorityOrdered, Serializable {
  2. @Override
  3. public Object invoke(MethodInvocation mi) throws Throwable {
  4. MethodInvocation oldInvocation = invocation.get();
  5. invocation.set(mi);
  6. try {
  7. // 具体执行
  8. return mi.proceed();
  9. }
  10. finally {
  11. invocation.set(oldInvocation);
  12. }
  13. }
  14. }

不知道大家发现了问题没有,在刚上面截图的时候List<Object> chain中有6个通知方法,而在配置的util中只配置了5个方法,第一个这就是ExposeInvocationInterceptor这个方法,那这个到底是啥呢?
其实这里是Spring引入的又一个设计模式责任链设计模式引入这个设计模式原因就是在于,配置的通知方法这么多,那spring怎么知道去执行那一个advice呢?所以通过ExposeInvocationInterceptor(暴露调用器的拦截器)作为第一个通知方法,来保证所以的通知方法按按这中连式方式执行下去。
至此SpringAOP的通知连式结构调用流程就开始了,重复开始循环调用。一直到List chain整个链全部执行完毕
当前这里面还有一些其他的逻辑就没有具体细说了
比如整个链有没有一种顺序执行?还是说根据代码编写的先后顺序执行?
org.springframework.aop.aspectj.autoproxy.AspectJAwareAdvisorAutoProxyCreator#sortAdvisors
在获取到整个责任链之后会经过一次排序执行,这个排序默认是使用拓扑排序方法,大家可以具体的去看看sortAdvisors这个方法
然后在执行每一种通知方法时,都会有对应的切面通知方法

  • org.springframework.aop.aspectj.AspectJAfterAdvice
  • org.springframework.aop.aspectj.AspectJAfterReturningAdvice
  • org.springframework.aop.aspectj.AspectJAfterThrowingAdvice
  • org.springframework.aop.aspectj.AspectJAroundAdvice
  • org.springframework.aop.aspectj.AspectJMethodBeforeAdvice

配置的五种通知对应着上面的五种处理逻辑
所以整个责任链来说通知调用链路可以理解为一张图结构:
2021-09-09-12-17-52-902982.jpeg
以上就是Spring通知整个执行的过程,总结一下

Spring中的五种通知,首先是通过具Spring容器的启动过程获取到具体的通知,在调用对象时,通过动态代理ASM技术,把需要执行的advice先全部放在一个chain对象的集合中,为了保证整个链的调用默认会先调用ExposeInvocationInterceptor去触发整个链式执行,在执行完每一个advice时后都会再次回到super的proceed方法中,执行下一个advice,在执行不通的advice时后有对应的切面通知方法,当所有的advice执行完毕再通过反射调用目标方法 整个过程大家可以自己dubug试一下,也不是特别的麻烦!!!

AOP事务功能

AOP处理常见的配置切面处理日志等业务,还有大家也比较熟悉的那就是事务。
其实AOP的事务也是通过配置的advice的方式来执行的
2021-09-09-12-17-53-241962.jpeg
通知对advice的拆解来实现事务的功能。
在看源码的时候能带来很多的思考,在Spring中可以通过@Transactional注解来现实事务功能,看过源码的同学肯定看过TransactionAspectSupport这个类

  1. public abstract class TransactionAspectSupport implements BeanFactoryAware, InitializingBean {
  2. // 省略其他代码。。。。
  3. @Nullable
  4. protected Object invokeWithinTransaction(Method method, @Nullable Class<?> targetClass,
  5. final InvocationCallback invocation) throws Throwable {
  6. // If the transaction attribute is null, the method is non-transactional.
  7. TransactionAttributeSource tas = getTransactionAttributeSource();
  8. final TransactionAttribute txAttr = (tas != null ? tas.getTransactionAttribute(method, targetClass) : null);
  9. final PlatformTransactionManager tm = determineTransactionManager(txAttr);
  10. final String joinpointIdentification = methodIdentification(method, targetClass, txAttr);
  11. if (txAttr == null || !(tm instanceof CallbackPreferringPlatformTransactionManager)) {
  12. // Standard transaction demarcation with getTransaction and commit/rollback calls.
  13. TransactionInfo txInfo = createTransactionIfNecessary(tm, txAttr, joinpointIdentification);
  14. Object retVal = null;
  15. try {
  16. // This is an around advice: Invoke the next interceptor in the chain.
  17. // This will normally result in a target object being invoked.
  18. retVal = invocation.proceedWithInvocation();
  19. }
  20. catch (Throwable ex) {
  21. // target invocation exception
  22. // 异常回滚 重点
  23. completeTransactionAfterThrowing(txInfo, ex);
  24. throw ex;
  25. }
  26. finally {
  27. cleanupTransactionInfo(txInfo);
  28. }
  29. // 成功后提交 重点
  30. commitTransactionAfterReturning(txInfo);
  31. return retVal;
  32. }
  33. // 省略其他的代码。。。。
  34. }

因此SpringAOP的声明事务也是通过advice实现。
AOP的事务整体来说比较简单,说白了就是通过advice的从新组合来完成事务功能,当然也是Spring的强大之处,扩展性是真的高。

总结

SpringAop就跟学妹们聊完了,需要理解的就是advice的通知整个流程,但是这个过程需要大家不断的去看这个框架的源码,看源码的过程可以激发很多思考,怎么才能写出高质量代码?
为了加强理解,还是有两个比较常见的面试题

advice的通知执行流程?

看完整个流程如果还是不理解的话可以自己debug走一遍加深自己的理解,文中也做了总结。但是要自己真的理解才能不会被面试官问倒

AOP中的Transactional事务是怎么实现的?

这个问题如果理解advice的调用流程那么也就能很简单的回答了。