快速业务通道

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

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-17
ual,hashcode,tostring的代码    }

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

时间:2011-03-29 javaeye jiwenke

这里我们看看属性值是怎样被读入的: AbstractFallbackTransactionAttributeSource负责具体的属性读入任务,我们可以有两 种读入方式,比如annotation和直接配置.我们下面看看直接配置的读入方式,在Spring 中同时对读入的属性值进行了缓存处理,这是一个decorator模式:

Java代码

public final TransactionAttribute getTransactionAttribute(Method method, Class targetClass) {      //这里先查一下缓存里有没有事务管理的属性配置,如果有从缓存中取得 TransactionAttribute      Object cacheKey = getCacheKey(method, targetClass);      Object cached = this.cache.get(cacheKey);      if (cached != null) {        if (cached == NULL_TRANSACTION_ATTRIBUTE) {          return null;        }        else {          return (TransactionAttribute) cached;        }      }      else {        // 这里通过对方法和目标对象的信息来计算事务缓存属性        TransactionAttribute txAtt = computeTransactionAttribute (method, targetClass);        //把得到的事务缓存属性存到缓存中,下次可以直接从缓存中取得。        if (txAtt == null) {          this.cache.put(cacheKey, NULL_TRANSACTION_ATTRIBUTE);        }        else {          ...........          this.cache.put(cacheKey, txAtt);        }        return txAtt;      }    }

别急,基本的处理在computeTransactionAttribute()中:

Java代码

private TransactionAttribute computeTransactionAttribute(Method method, Class targetClass) {      //这里检测是不是public方法      if(allowPublicMethodsOnly() && !Modifier.isPublic (method.getModifiers())) {        return null;      }      Method specificMethod = AopUtils.getMostSpecificMethod(method, targetClass);      // First try is the method in the target class.      TransactionAttribute txAtt = findTransactionAttribute (findAllAttributes(specificMethod));      if (txAtt != null) {        return txAtt;      }      // Second try is the transaction attribute on the target class.      txAtt = findTransactionAttribute(findAllAttributes (specificMethod.getDeclaringClass()));      if (txAtt != null) {        return txAtt;      }      if (specificMethod != method) {        // Fallback is to look at the original method.        txAtt = findTransactionAttribute(findAllAttributes (method));        if (txAtt != null) {          return txAtt;        }        // Last fallback is the class of the original method.        return findTransactionAttribute(findAllAttributes (method.getDeclaringClass()));      }      return null;    }

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

时间:2011-03-29 javaeye jiwenke

经过一系列的尝试我们可以通过findTransactionAttribute()通过调用 findAllAttribute()得到TransactionAttribute的对象,如果返

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