快速业务通道

Spring声明式事务管理源码解读之事务开始 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-17
If no name specified, apply method identification as transaction name. if (txAttr != null && txAttr.getName() == null) { final String name = methodIdentification(method); txAttr = new DelegatingTransactionAttribute(sourceAttr) { public String getName() { return name; } }; } TransactionInfo txInfo = new TransactionInfo(txAttr, method); //TransactionInfo是TransactionAspectSupport的一个内部类,它的主要功能是记录 方法和对应的事务属性 if (txAttr != null) { // We need a transaction for this method if (logger.isDebugEnabled()) { logger.debug("Getting transaction for " + txInfo.joinpointIdentification()); } // The transaction manager will flag an error if an incompatible tx already exists txInfo.newTransactionStatus(this.transactionManager.getTransaction (txAttr));//这个方法要仔细的看 } else { // The TransactionInfo.hasTransaction() method will return // false. We created it only to preserve the integrity of // the ThreadLocal stack maintained in this class. if (logger.isDebugEnabled()) logger.debug("Don''t need to create transaction for [" + methodIdentification(method) + "]: this method isn''t transactional"); } // We always bind the TransactionInfo to the thread, even if we didn''t create // a new transaction here. This guarantees that the TransactionInfo stack // will be managed correctly even if no transaction was created by this aspect. txInfo.bindToThread(); return txInfo; }

TransactionInfo是TransactionAspectSupport的一个内部类,它的主要功能是记录方 法和对应的事务属性,在上面这个方法的最后,这个TransactionInfo对象被保存到当前 线程中。

而这个方法会在事务拦截器TransactionInterceptor中被调用, TransactionInterceptor实际上是TransactionAspectSupport的子类,看看其中的invoke 方法:

// Work out the target class: may be <code>null</code>. // The TransactionAttributeSource should be passed the target class // as well as the method, which may be from an interface Class targetClass = (invocation.getThis() != null) ? invocation.getThis ().getClass() : null; // Create transaction if necessary. TransactionInfo txInfo = createTransactionIfNecessary(invocation.getMethod(), targetClass); Object retVal = null; try { // This is an around advice. // Invoke the next interceptor in the chain. // This will normally result in a target object being invoked. retVal = invocation.proceed(); } catch (Throwable ex) { // target invocation exception doCloseTransactionAfterThrowing(txInfo, ex); throw ex; } finally { doFinally(txInfo); } doCommitTransactionAfterReturning(txInfo);//在这里执行方法结束之后需要的操作 return retVal;

Spring声明式事务管理源码解读之事务开始(3)

时间:2011-03-29 javaeye 张荣华

这个方法就如同一般的interceptor需要实现的方法一样。只不过在这个方法里判断被 反射的方法是否需要事务。

接着我们重点再回头看一下createTransactionIfNecessary方法里的这一句:

txInfo.newTransactionStatus(this.transactionManager.getTransaction (txAttr));

接着我们就应该去看看这个getTransaction方法了,假设我们是使用hibernate3,其

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