快速业务通道

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

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-17

Spring源代码解析(六):Spring声明式事务处理

时间:2011-03-29 javaeye jiwenke

我们看看Spring中的事务处理的代码,使用Spring管理事务有声明式和编程式两种方 式,声明式事务处理通过AOP的实现把事物管理代码作为方面封装来横向插入到业务代码 中,使得事务管理代码和业务代码解藕。在这种方式我们结合IoC容器和Spirng已有的 FactoryBean来对事务管理进行属性配置,比如传播行为,隔离级别等。其中最简单的方 式就是通过配置TransactionProxyFactoryBean来实现声明式事物;

在整个源代码分析中,我们可以大致可以看到Spring实现声明式事物管理有这么几个 部分:

* 对在上下文中配置的属性的处理,这里涉及的类是 TransactionAttributeSourceAdvisor,这是一个通知器,用它来对属性值进行处理,属 性信息放在TransactionAttribute中来使用,而这些属性的处理往往是和对切入点的处理 是结合起来的。对属性的处理放在类TransactionAttributeSource中完成。

* 创建事物的过程,这个过程是委托给具体的事物管理器来创建的,但Spring通过 TransactionStatus来传递相关的信息。

* 对事物的处理通过对相关信息的判断来委托给具体的事物管理器完成。

我们下面看看具体的实现,在TransactionFactoryBean中:

Java代码

public class TransactionProxyFactoryBean extends AbstractSingletonProxyFactoryBean      implements FactoryBean, BeanFactoryAware { //这里是Spring事务处理而使用的AOP******,中间封装了Spring对事务处理的代码来 支持声明式事务处理的实现    private final TransactionInterceptor transactionInterceptor = new TransactionInterceptor();    private Pointcut pointcut; //这里Spring把TransactionManager注入到TransactionInterceptor中去    public void setTransactionManager(PlatformTransactionManager transactionManager) {      this.transactionInterceptor.setTransactionManager (transactionManager);    } //这里把在bean配置文件中读到的事务管理的属性信息注入到TransactionInterceptor 中去    public void setTransactionAttributes(Properties transactionAttributes) {      this.transactionInterceptor.setTransactionAttributes (transactionAttributes);    }    .........中间省略了其他一些方法.......    //这里创建Spring AOP对事务处理的Advisor    protected Object createMainInterceptor() {      this.transactionInterceptor.afterPropertiesSet();      if (this.pointcut != null) {        //这里使用默认的通知器        return new DefaultPointcutAdvisor(this.pointcut, this.transactionInterceptor);      }      else {        // 使用上面定义好的TransactionInterceptor作为******,同时使用 TransactionAttributeSourceAdvisor        return new TransactionAttributeSourceAdvisor (this.transactionInterceptor);      }    } }

Spring源代码解析(六):Spring声明式事务处理(2)

时间:2011-03-29 javaeye jiwenke

那什么时候Spring的TransactionInterceptor被注入到Spring AOP中成为Advisor中的 一部分呢?我们看到在TransactionProxyFactoryBean中,这个方法在IOC初始化bean的时 候被执行:

Java代码

public void afterPropertiesSet() {      .......      //TransactionProxyFactoryBean实际上使用ProxyFactory完成AOP的基本功 能。      ProxyFactory proxyFactory = new ProxyFactory();      if (this.preIntercep

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站: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号