快速业务通道

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

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-17
boolean newSynchronization = (getTransactionSynchronization() == SYNCHRONIZATION_ALWAYS);        return newTransactionStatus(definition, null, false, newSynchronization, debugEnabled, null);      }    }

接着通过调用prepareTransactionInfo完成事务创建的准备,创建过程中得到的信息 存储在TransactionInfo对象中进行传递同时把信息和当前线程绑定;

Java代码

protected TransactionInfo prepareTransactionInfo(        TransactionAttribute txAttr, String joinpointIdentification, TransactionStatus status) {      TransactionInfo txInfo = new TransactionInfo(txAttr, joinpointIdentification);      if (txAttr != null) {      .....        // 同样的需要把在getTransaction中得到的TransactionStatus放到 TransactionInfo中来。        txInfo.newTransactionStatus(status);      }      else {      .......     }      // 绑定事务创建信息到当前线程      txInfo.bindToThread();      return txInfo;    }

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

时间:2011-03-29 javaeye jiwenke

将创建事务的信息返回,然后看到其他的事务管理代码:

Java代码

protected void commitTransactionAfterReturning(TransactionInfo txInfo) {      if (txInfo != null && txInfo.hasTransaction()) {        if (logger.isDebugEnabled()) {          logger.debug("Invoking commit for transaction on " + txInfo.getJoinpointIdentification());        }        this.transactionManager.commit(txInfo.getTransactionStatus ());      }    }

通过transactionManager对事务进行处理,包括异常抛出和正常的提交事务,具体的 事务管理器由用户程序设定。

Java代码

protected void completeTransactionAfterThrowing(TransactionInfo txInfo, Throwable ex) {      if (txInfo != null && txInfo.hasTransaction()) {        if (txInfo.transactionAttribute.rollbackOn(ex)) {          ......          try {            this.transactionManager.rollback (txInfo.getTransactionStatus());          }          ..........     }        else {          .........          try {            this.transactionManager.commit (txInfo.getTransactionStatus());          }     ...........    }    protected void commitTransactionAfterReturning(TransactionInfo txInfo) {      if (txInfo != null && txInfo.hasTransaction()) {        ......        this.transactionManager.commit(txInfo.getTransactionStatus ());      }    }

Spring通过以上代码对transactionManager进行事务处理的过程进行了AOP包装,到这 里我们看到为了方便客户实现声明式的事务处理,Spring还是做了许多工作的。如果说使 用编程式事务处理,过程其实比较清楚,我们可以参考书中的例子:

Java代码

TransactionDefinition td = new DefaultTransactionDefinition();    TransactionStatus status = transactionManager.getTransaction(td);    try{       ......//这里是我们的业务方法    }catch (ApplicationException e) {     transactionManager.rollback(status);     throw e  

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