?? annotationtransactionattributesource.java
字號:
/*
* Copyright 2002-2006 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.transaction.annotation;
import java.io.Serializable;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import org.springframework.core.annotation.AnnotationUtils;
import org.springframework.transaction.interceptor.AbstractFallbackTransactionAttributeSource;
import org.springframework.transaction.interceptor.NoRollbackRuleAttribute;
import org.springframework.transaction.interceptor.RollbackRuleAttribute;
import org.springframework.transaction.interceptor.RuleBasedTransactionAttribute;
import org.springframework.transaction.interceptor.TransactionAttribute;
/**
* Implementation of <code>TransactionAttributeSource</code> for working with
* transaction metadata in JDK 1.5+ annotation format.
*
* <p>This class reads the JDK 1.5+ <code>Transactional</code> annotation and
* exposes corresponding transaction attributes to Spring's transaction infrastructure.
*
* <p>This is a direct alternative to <code>AttributesTransactionAttributeSource</code>,
* which is able to read in source-level attributes via Commons Attributes.
*
* @author Colin Sampaleanu
* @author Juergen Hoeller
* @since 1.2
* @see Transactional
* @see org.springframework.transaction.interceptor.TransactionInterceptor#setTransactionAttributeSource
* @see org.springframework.transaction.interceptor.TransactionProxyFactoryBean#setTransactionAttributeSource
* @see org.springframework.transaction.interceptor.AttributesTransactionAttributeSource
* @see org.springframework.metadata.commons.CommonsAttributes
*/
public class AnnotationTransactionAttributeSource
extends AbstractFallbackTransactionAttributeSource implements Serializable {
/**
* Returns all JDK 1.5+ annotations found for the given method.
*/
protected Collection findAllAttributes(Method method) {
return Arrays.asList(AnnotationUtils.getAnnotations(method));
}
/**
* Returns all JDK 1.5+ annotations found for the given class.
*/
protected Collection findAllAttributes(Class clazz) {
return Arrays.asList(clazz.getAnnotations());
}
/**
* Return the transaction attribute, given this set of attributes
* attached to a method or class. Overrides method from parent class.
* This version actually converts JDK 5.0+ Annotations to the Spring
* classes. Returns null if it's not transactional.
* @param atts attributes attached to a method or class. May
* be <code>null</code>, in which case a null TransactionAttribute will be returned.
* @return TransactionAttribute configured transaction attribute,
* or <code>null</code> if none was found
*/
protected TransactionAttribute findTransactionAttribute(Collection atts) {
if (atts == null) {
return null;
}
// See if there is a transaction annotation.
for (Object att : atts) {
if (att instanceof Transactional) {
Transactional ruleBasedTx = (Transactional) att;
RuleBasedTransactionAttribute rbta = new RuleBasedTransactionAttribute();
rbta.setPropagationBehavior(ruleBasedTx.propagation().value());
rbta.setIsolationLevel(ruleBasedTx.isolation().value());
rbta.setTimeout(ruleBasedTx.timeout());
rbta.setReadOnly(ruleBasedTx.readOnly());
ArrayList<RollbackRuleAttribute> rollBackRules = new ArrayList<RollbackRuleAttribute>();
Class[] rbf = ruleBasedTx.rollbackFor();
for (int i = 0; i < rbf.length; ++i) {
RollbackRuleAttribute rule = new RollbackRuleAttribute(rbf[i]);
rollBackRules.add(rule);
}
String[] rbfc = ruleBasedTx.rollbackForClassName();
for (int i = 0; i < rbfc.length; ++i) {
RollbackRuleAttribute rule = new RollbackRuleAttribute(rbfc[i]);
rollBackRules.add(rule);
}
Class[] nrbf = ruleBasedTx.noRollbackFor();
for (int i = 0; i < nrbf.length; ++i) {
NoRollbackRuleAttribute rule = new NoRollbackRuleAttribute(nrbf[i]);
rollBackRules.add(rule);
}
String[] nrbfc = ruleBasedTx.noRollbackForClassName();
for (int i = 0; i < nrbfc.length; ++i) {
NoRollbackRuleAttribute rule = new NoRollbackRuleAttribute(nrbfc[i]);
rollBackRules.add(rule);
}
rbta.getRollbackRules().addAll(rollBackRules);
return rbta;
}
}
return null;
}
/**
* Only public methods can be made transactional using {@link Transactional}.
*/
protected boolean allowPublicMethodsOnly() {
return true;
}
public boolean equals(Object other) {
return (this == other || other instanceof AnnotationTransactionAttributeSource);
}
public int hashCode() {
return AnnotationTransactionAttributeSource.class.hashCode();
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -