SpringAop:的底层就是通过JDK动态代理"或"CGLib动态代理为技术目标织入横切逻辑。
做aop:需要导入:
spring-aop-4.1.5.RELEASE.jar
spring-beans-4.1.5.RELEASE.jar
spring-context-4.1.5.RELEASE.jar
spring-context-support-4.1.5.RELEASE.jar
spring-core-4.1.5.RELEASE.jar
cglib引入的包:
cglib-nodep-2.1_3.jar
aop联盟:schmeAop
aopalliance-1.0.jar
aspectj:基于注解aop
aspectjweaver.jar
org.springframework.aop.BeforeAdvice 前置通知:在目标方法之前,执行的业务逻辑 :MethodBeforeAdvice
org.springframework.aop.AfterReturningAdvice 后置通知:在目标方法之后,执行的业务逻辑
org.aopalliance.intercept.MethodInterceptor 环绕通知:目标方法执行前后,执行的业务逻辑(用的最多的)
org.springframework.aop.ThrowsAdvice 异常通知:执行目标方法出现异常,执行的业务逻辑(几乎很少使用)
org.springframework.aop.IntroductionInterceptor 引介通知.在目标类中添加了一些新的方法和属性的时候,执行的业务逻辑(几乎很少使用)
aopalliance_1.0.jar下载地址:
http://mirrors.ibiblio.org/pub/mirrors/maven2/aopalliance/aopalliance/1.0/
aspectj 1.8.10 http://mvnrepository.com/artifact/org.aspectj/aspectjrt/1.8.10
aspectjweaver 1.8.10 http://mvnrepository.com/artifact/org.aspectj/aspectjweaver/1.8.10