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的对象,如果返 |