Spring AOP的使用详解
什么是aop
aop(aspect oriented programming 面向切面编程),通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。aop是oop的延续,是软件开发中的一个热点,也是spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用aop可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
常用于日志记录,性能统计,安全控制,事务处理,异常处理等等。
定义aop术语
切面(aspect):切面是一个关注点的模块化,这个关注点可能是横切多个对象;
连接点(join point):连接点是指在程序执行过程中某个特定的点,比如某方法调用的时候或者处理异常的时候;
通知(advice):指在切面的某个特定的连接点上执行的动作。spring切面可以应用5中通知:
- 前置通知(before):在目标方法或者说连接点被调用前执行的通知;
- 后置通知(after):指在某个连接点完成后执行的通知;
- 返回通知(after-returning):指在某个连接点成功执行之后执行的通知;
- 异常通知(after-throwing):指在方法抛出异常后执行的通知;
- 环绕通知(around):指包围一个连接点通知,在被通知的方法调用之前和之后执行自定义的方法。
切点(pointcut):指匹配连接点的断言。通知与一个切入点表达式关联,并在满足这个切入的连接点上运行,例如:当执行某个特定的名称的方法。
引入(introduction):引入也被称为内部类型声明,声明额外的方法或者某个类型的字段。
目标对象(target object):目标对象是被一个或者多个切面所通知的对象。
aop代理(aop proxy):aop代理是指aop框架创建的对对象,用来实现切面契约(包括通知方法等功能)
织入(wearving):指把切面连接到其他应用出程序类型或者对象上,并创建一个被通知的对象。或者说形成代理对象的方法的过程。
spring对aop的支持
- 基于代理的经典springaop;
- 纯pojo切面;
- @aspectj注解驱动的切面;
- 注入式aspectj切面(适用于spring各版本);
前三种都是springaop实现的变体,springaop构建在动态代理基础之上,因此,spring对aop的支持局限于方法的拦截。
切入点表达式
使用springaop
springaop的支持必须呀导入spring-aspects的jar包
<dependency> <groupid>org.springframework</groupid> <artifactid>spring-aspects</artifactid> <version>4.3.5.release</version> </dependency>
使用注解定义切面
采用注解的方式定义切面以及通知
@aspect public class audience { //使用@pointcut注解声明频繁使用的切入点表达式 @pointcut("execution(* com.wqh.concert.performance.perform(..))") public void performance(){} @before("performance()") public void silencecellphones(){ system.out.println("sillencing cell phones"); } @before("performance()") public void takeseats(){ system.out.println("task seat"); } @afterreturning("performance()") public void applause(){ system.out.println("clap clap clap"); } @afterthrowing("performance()") public void demandrefund(){ system.out.println("demand a refund"); } }
另外需要在applicationcontext.xml也就是spring的配置文件中添加配置:
<!--启用aspectj的自动代理--> <aop:aspectj-autoproxy/> <!--声明bean--> <bean class="com.wqh.concert.audience"/>
在xml中声明切面
定义pojo类,这里只是把上面定义的注解全public class audiencexml {
public void silencecellphones() { system.out.println("sillencing cell phones"); } public void takeseats() { system.out.println("task seat"); } public void applause() { system.out.println("clap clap clap"); } public void demandrefund() { system.out.println("demand a refund"); }
applicationcontext.xml配置
<!--声明bean--> <bean name="audiencexml" class="com.wqh.concert.audiencexml"/> <aop:config> <!--引入bean--> <aop:aspect ref="audiencexml"> <!--定义切点--> <aop:pointcut id="perform" expression="execution(* com.wqh.concert.performance.perform(..))"/> <!--定义通知 method:通知,也就是具体的方法 pointcut-ref:引用的切点 pointcut:切点--> <aop:before method="silencecellphones" pointcut-ref="perform"/> <aop:before method="takeseats" pointcut-ref="perform"/> <aop:after-returning method="applause" pointcut-ref="perform"/> <aop:after-throwing method="demandrefund" pointcut="execution(* com.wqh.concert.performance.perform(..))"/> </aop:aspect> </aop:config>
环绕通知
在springaop中有五种通知,环绕通知是最为强大的通知。它能够让你编写的逻辑将被通知的目标方法完全包装起来。实际上就像在一个通知方法中同时编写前置通知和后置通知。
本片文章具体讲解环绕通知的使用。
使用注解
使用环绕通知定义切面:
@aspect public class audiencearound { //使用@pointcut注解声明频繁使用的切入点表达式 @pointcut("execution(* com.wqh.concert.performance.perform(..))") public void performance(){} @around("performance()") public void watchperformance(proceedingjoinpoint joinpoint){ try { system.out.println("silencing cell phones"); system.out.println("taking seats"); joinpoint.proceed(); system.out.println("demanding a refund"); } catch (throwable throwable) { throwable.printstacktrace(); } } }
可以看到在上面的代码中,定义通知的时候在通知方法中添加了入参:proceedingjoinpoint。在创建环绕通知的时候,这个参数是必须写的。因为在需要在通知中使用proceedingjoinpoint.proceed()方法调用被通知的方法。
另外,如果忘记调用proceed()方法,那么通知实际上会阻塞对被通知方法的调用。
在xml中定义
首先去掉上面类的所有注解:这里为了区别就重新创建一个类
public class audiencearoundxml { public void watchperformance(proceedingjoinpoint joinpoint){ try { system.out.println("silencing cell phones"); system.out.println("taking seats"); joinpoint.proceed(); system.out.println("demanding a refund"); } catch (throwable throwable) { throwable.printstacktrace(); } } }
配置:
<!--声明bean--> <bean name="audiencearoundxml" class="com.wqh.concert.audiencearoundxml"/> <!--配置切面及通知--> <aop:config> <aop:aspect ref="audiencearoundxml"> <aop:pointcut id="performance" expression="execution(* com.wqh.concert.performance.perform(..))"/> <aop:around method="watchperformance" pointcut-ref="performance"/> </aop:aspect> </aop:config>
处理通知中的参数
spring借助aspectj的切点表达式语言来定义spring切面
在spring中尝试使用其他指示器时,会抛出illegalargument-exception异常。
如上的这些指示器,只有exception指示器是实际执行匹配的,而其他都是用来限制匹配的。
切面表达式分析
带参数的切点表达式分解
在该切点表达式中使用了args(tracknumber)限定符。表示传递给playtrack()方法的int类型参数也会传递到通知中去。参数名tracknumber也与切点方法签名中的参数相匹配。
创建切面
@aspect public class trackcounter { @pointcut("execution(* com.wqh.aop.compactdisc.playtrack(int))&&args(tracknumber)") public void trackplayder(int tracknumber){} @before("trackplayder(tracknumber)") public void counttrack(int tracknumber) { system.out.println("前置通知:targetnumber=" + tracknumber); } }
连接点类
@service public class compactdisc { public void playtrack(int tracknumber){ system.out.println("tracknumber =" + tracknumber); } }
xml配置
<!--启用aspectj的自动代理--> <aop:aspectj-autoproxy/> <!--声明bean--> <bean class="com.wqh.aop.trackcounter"/> <!--自动扫描包下的类--> <context:component-scan base-package="com.wqh.aop"/>
测试
@test public void testt(){ applicationcontext applicationcontext = new classpathxmlapplicationcontext( new string[]{"classpath:/spring/applicationcontext.xml"}); compactdisc compactdisc = (compactdisc) applicationcontext.getbean("compactdisc"); compactdisc.playtrack(12); }
上面给指定方法传入的参数是12,在通知中获取到了该参数
另外:在xml中配置切面来处理通知中的参数,其实也差不多,只是把切点表达式放到了xml配置文件中。
给类添加新的功能
引入spring实战中的知识
在springaop中,我们可以为bean引入新的方法。代理拦截器调用并委托给实现该方法的其他对象。
当引入接口的方法被调用时,代理会把此调用委托给实现了新接口的某给其他对象。
使用注解方式引入
代码
首先是连接点的接口及其实现类
public interface person { void say(); }
public class chineseperson implements person { @override public void say() { system.out.println("说中文"); } }
创建需要添加的功能,这里个人类扩展一个吃的功能
public interface food { void eat(); }
public class chinesefood implements food { @override public void eat() { system.out.println("吃中餐"); } }
编写切面
@aspect public class addfuction { @declareparents(value = "com.wqh.addfunction.person+",defaultimpl = chinesefood.class) public static food food; }
注意这里的表达式使用的式@declareparents注解;该注解所标注的静态属性指明了要引入的接口。
注解中使用的value属性指定哪种类型的bean要引入该接口,这里person后后面的“+”号表示所有子类型,而不是该类的本身。defaultimpl,指定了为引入功能提供实现的类。
使用xml配置bean:
<!--启用aspectj的自动代理--> <aop:aspectj-autoproxy/> <!--声明bean--> <bean class="com.wqh.addfunction.addfuction"/> <bean name="chineseperson" class="com.wqh.addfunction.chineseperson"/>
测试
@test public void testadd(){ applicationcontext applicationcontext = new classpathxmlapplicationcontext( "classpath:spring/applicationcontext.xml"); person person = (person) applicationcontext.getbean("chineseperson"); person.say(); //这里可以将chineseperson bean转换为food类,所以添加成功 food food = (food) applicationcontext.getbean("chineseperson"); food.eat(); }
在xml中引入
首先将上面的addfuction注解全部删除,其他不变;然后在xml中添加相应的配置:
<!--启用aspectj的自动代理--> <aop:aspectj-autoproxy/> <!--声明bean--> <bean name="chineseperson" class="com.wqh.addfunction.chineseperson"/> <aop:config> <aop:aspect> <aop:declare-parents types-matching="com.wqh.addfunction.person+" implement-interface="com.wqh.addfunction.food" default-impl="com.wqh.addfunction.chinesefood"/> </aop:aspect> </aop:config>
这里的types-matching与上面的vale作用一样;
default-impl与defaultimpl作用一样,这也可以使用delegate-ref;当然如果使用delegate-ref则是要引用springbean;
implement-interface则是要引入的接口
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。