Joinpoint:它定义在哪里加入你的逻辑功能,对于Spring AOP,Jointpoint指的就是Method。
Advice:特定的Jointpoint处运行的代码,对于Spring AOP 来讲,有Before advice、AfterreturningAdvice、ThrowAdvice、AroundAdvice(MethodInteceptor)等。
Pointcut:一组Joinpoint,就是说一个Advice可能在多个地方织入,
Aspect:实际是Advice和Pointcut的组合,但是Spring AOP 中的Advisor也是这样一个东西,但是Spring中为什么叫Advisor而不叫做Aspect。
Target:被通知的对象。
Proxy:将通知应用到目标对象后创建的对象
Weaving:将Aspect加入到程序代码的过程,对于Spring AOP,由ProxyFactory或者ProxyFactoryBean负责织入动作。

 

spring对AOP的支持有以下4种情况:
经典的基于代理的aop(各版本spring)
注入式自动代理切面(各版本spring)
@AspectJ注解驱动的切面(spring2.0后)
纯pojo切面(spring2.0后)

代码Demo下载地址:https://files.cnblogs.com/onlywujun/SpringAopTest.zip

相关文章:

  • 2021-07-26
  • 2022-12-23
  • 2021-10-29
  • 2021-07-24
  • 2021-09-25
  • 2021-06-08
  • 2022-02-07
  • 2021-09-17
猜你喜欢
  • 2021-09-05
  • 2021-08-04
  • 2021-12-30
  • 2022-12-23
  • 2022-01-31
  • 2021-04-02
  • 2021-07-08
相关资源
相似解决方案