快速业务通道

Spring源代码解析(六):Spring声明式事务处理 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-17
tors != null) {        for (int i = 0; i < this.preInterceptors.length; i++) {          proxyFactory.addAdvisor(this.advisorAdapterRegistry.wrap (this.preInterceptors[i]));        }      }      //这里是Spring加入通知器的地方      //有两种通知器可以被加入DefaultPointcutAdvisor或者 TransactionAttributeSourceAdvisor      //这里把Spring处理声明式事务处理的AOP代码都放到ProxyFactory中去,怎 样加入advisor我们可以参考ProxyFactory的父类AdvisedSupport()      //由它来维护一个advice的链表,通过这个链表的增删改来抽象我们对整个 通知器配置的增删改操作。      proxyFactory.addAdvisor(this.advisorAdapterRegistry.wrap (createMainInterceptor()));      if (this.postInterceptors != null) {        for (int i = 0; i < this.postInterceptors.length; i++) {          proxyFactory.addAdvisor(this.advisorAdapterRegistry.wrap (this.postInterceptors[i]));        }      }      proxyFactory.copyFrom(this);      //这里创建AOP的目标源      TargetSource targetSource = createTargetSource(this.target);      proxyFactory.setTargetSource(targetSource);      if (this.proxyInterfaces != null) {        proxyFactory.setInterfaces(this.proxyInterfaces);      }      else if (!isProxyTargetClass()) {        proxyFactory.setInterfaces(ClassUtils.getAllInterfacesForClass (targetSource.getTargetClass()));      }      this.proxy = getProxy(proxyFactory);    }

Spring 已经定义了一个transctionInterceptor作为拦截器或者AOP advice的实现, 在IOC容器中定义的其他属性比如transactionManager和事务管理的属性都会传到已经定 义好的 TransactionInterceptor那里去进行处理。以上反映了基本的Spring AOP的定义 过程,其中pointcut和advice都已经定义好,同时也通过通知器配置到ProxyFactory中去 了。

下面让我们回到TransactionProxyFactoryBean中看看 TransactionAttributeSourceAdvisor是怎样定义的,这样我们可以理解具体的属性是怎 样起作用,这里我们分析一下类TransactionAttributeSourceAdvisor:

Java代码

public class TransactionAttributeSourceAdvisor extends AbstractPointcutAdvisor {    //和其他Advisor一样,同样需要定义AOP中的用到的Interceptor和Pointcut    //Interceptor使用传进来的TransactionInterceptor    //而对于pointcut,这里定义了一个内部类,参见下面的代码     private TransactionInterceptor transactionInterceptor;    private final TransactionAttributeSourcePointcut pointcut = new TransactionAttributeSourcePointcut();    .........    //定义的PointCut内部类      private class TransactionAttributeSourcePointcut extends StaticMethodMatcherPointcut implements Serializable {     .......     //方法匹配的实现,使用了TransactionAttributeSource类      public boolean matches(Method method, Class targetClass) {        TransactionAttributeSource tas = getTransactionAttributeSource ();        //这里使用TransactionAttributeSource来对配置属性进行处理        return (tas != null && tas.getTransactionAttribute (method, targetClass) != null);      }    ........省略了eq

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号