详解Spring Aop实例之AspectJ注解配置
上篇《spring aop实例之xml配置》中,讲解了xml配置方式,今天来说说aspectj注解方式去配置spring aop。
依旧采用的jdk代理,接口和实现类代码请参考上篇博文。主要是将aspect类分享一下:
package com.tgb.aop; import org.aspectj.lang.joinpoint; import org.aspectj.lang.proceedingjoinpoint; import org.aspectj.lang.annotation.after; import org.aspectj.lang.annotation.afterreturning; import org.aspectj.lang.annotation.afterthrowing; import org.aspectj.lang.annotation.around; import org.aspectj.lang.annotation.aspect; import org.aspectj.lang.annotation.before; import org.aspectj.lang.annotation.declareparents; import org.aspectj.lang.annotation.pointcut; /** * 测试after,before,around,throwing,returning advice. * @author admin * */ @aspect public class aspcejadvice { /** * pointcut * 定义pointcut,pointcut的名称为aspectjmethod(),此方法没有返回值和参数 * 该方法就是一个标识,不进行调用 */ @pointcut("execution(* find*(..))") private void aspectjmethod(){}; /** * before * 在核心业务执行前执行,不能阻止核心业务的调用。 * @param joinpoint */ @before("aspectjmethod()") public void beforeadvice(joinpoint joinpoint) { system.out.println("-----beforeadvice().invoke-----"); system.out.println(" 此处意在执行核心业务逻辑前,做一些安全性的判断等等"); system.out.println(" 可通过joinpoint来获取所需要的内容"); system.out.println("-----end of beforeadvice()------"); } /** * after * 核心业务逻辑退出后(包括正常执行结束和异常退出),执行此advice * @param joinpoint */ @after(value = "aspectjmethod()") public void afteradvice(joinpoint joinpoint) { system.out.println("-----afteradvice().invoke-----"); system.out.println(" 此处意在执行核心业务逻辑之后,做一些日志记录操作等等"); system.out.println(" 可通过joinpoint来获取所需要的内容"); system.out.println("-----end of afteradvice()------"); } /** * around * 手动控制调用核心业务逻辑,以及调用前和调用后的处理, * * 注意:当核心业务抛异常后,立即退出,转向afteradvice * 执行完afteradvice,再转到throwingadvice * @param pjp * @return * @throws throwable */ @around(value = "aspectjmethod()") public object aroundadvice(proceedingjoinpoint pjp) throws throwable { system.out.println("-----aroundadvice().invoke-----"); system.out.println(" 此处可以做类似于before advice的事情"); //调用核心逻辑 object retval = pjp.proceed(); system.out.println(" 此处可以做类似于after advice的事情"); system.out.println("-----end of aroundadvice()------"); return retval; } /** * afterreturning * 核心业务逻辑调用正常退出后,不管是否有返回值,正常退出后,均执行此advice * @param joinpoint */ @afterreturning(value = "aspectjmethod()", returning = "retval") public void afterreturningadvice(joinpoint joinpoint, string retval) { system.out.println("-----afterreturningadvice().invoke-----"); system.out.println("return value: " + retval); system.out.println(" 此处可以对返回值做进一步处理"); system.out.println(" 可通过joinpoint来获取所需要的内容"); system.out.println("-----end of afterreturningadvice()------"); } /** * 核心业务逻辑调用异常退出后,执行此advice,处理错误信息 * * 注意:执行顺序在around advice之后 * @param joinpoint * @param ex */ @afterthrowing(value = "aspectjmethod()", throwing = "ex") public void afterthrowingadvice(joinpoint joinpoint, exception ex) { system.out.println("-----afterthrowingadvice().invoke-----"); system.out.println(" 错误信息:"+ex.getmessage()); system.out.println(" 此处意在执行核心业务逻辑出错时,捕获异常,并可做一些日志记录操作等等"); system.out.println(" 可通过joinpoint来获取所需要的内容"); system.out.println("-----end of afterthrowingadvice()------"); } }
application-config.xml中,只需要配置业务逻辑bean和aspect bean,并启用aspect注解即可:
<?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" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd"> <!-- 启用aspectj对annotation的支持 --> <aop:aspectj-autoproxy/> <bean id="usermanager" class="com.tgb.aop.usermanagerimpl"/> <bean id="aspcejhandler" class="com.tgb.aop.aspcejadvice"/> </beans>
结果如图:
通过测试的发现aroundadvice、beforeadvice、afteradvice、returningadvice的执行顺序是根据注解的顺序而定的。但是有时候修改了顺序,结果却没有变化,可能是缓存的缘故。前几天我也遇到了这样的问题,不过今天再测试了一下,发现执行顺序又跟注解的顺序一致了。
xml 和 annotation 注解都可以作为配置项,对spring aop进行配置管理,那么它们各自都有什么优缺点呢?
首先说说 xml 。目前 web 应用中几乎都使用 xml 作为配置项,例如我们常用的框架 struts、spring、hibernate 等等都采用 xml 作为配置。xml 之所以这么流行,是因为它的很多优点是其它技术的配置所无法替代的:
- xml 作为可扩展标记语言最大的优势在于开发者能够为软件量身定制适用的标记,使代码更加通俗易懂。
- 利用 xml 配置能使软件更具扩展性。例如 spring 将 class 间的依赖配置在 xml 中,最大限度地提升应用的可扩展性。
- 具有成熟的验证机制确保程序正确性。利用 schema 或 dtd 可以对 xml 的正确性进行验证,避免了非法的配置导致应用程序出错。
- 修改配置而无需变动现有程序。
虽然有如此多的好处,但毕竟没有什么万能的东西,xml 也有自身的缺点。
- 需要解析工具或类库的支持。
- 解析 xml 势必会影响应用程序性能,占用系统资源。
- 配置文件过多导致管理变得困难。
- 编译期无法对其配置项的正确性进行验证,或要查错只能在运行期。
- ide 无法验证配置项的正确性无能为力。
- 查错变得困难。往往配置的一个手误导致莫名其妙的错误。
- 开发人员不得不同时维护代码和配置文件,开发效率变得低下。
- 配置项与代码间存在潜规则。改变了任何一方都有可能影响另外一方。
让我们来看看 annotation 的优点。
- 保存在 class 文件中,降低维护成本。
- 无需工具支持,无需解析。
- 编译期即可验证正确性,查错变得容易。
- 提升开发效率。
同样 annotation 也不是万能的,它也有很多缺点。
- 若要对配置项进行修改,不得不修改 java 文件,重新编译打包应用。
- 配置项编码在 java 文件中,可扩展性差。
总结:没有一个事物是万能的,同样 xml 和 java annotation 都有各自的优缺点。通过以上对比,细心的读者可能已经发现它们的优缺点恰恰是互补的。xml 的强项是 annotation 所不具备的,而 annotation 的优势也是 xml 所欠缺的。这也正是时下流行的 xml + annotation 配置的原因所在。平衡才是王道呀!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: PHP 将dataurl转成图片image方法总结
下一篇: Python之os操作方法(详解)