public class SpringTransactionAnnotationParser extends Object implements TransactionAnnotationParser, Serializable
Transactional annotation.| Constructor and Description | 
|---|
SpringTransactionAnnotationParser()  | 
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
equals(Object other)  | 
int | 
hashCode()  | 
boolean | 
isCandidateClass(Class<?> targetClass)
Determine whether the given class is a candidate for transaction attributes
 in the annotation format of this  
TransactionAnnotationParser. | 
TransactionAttribute | 
parseTransactionAnnotation(AnnotatedElement element)
Parse the transaction attribute for the given method or class,
 based on an annotation type understood by this parser. 
 | 
protected TransactionAttribute | 
parseTransactionAnnotation(AnnotationAttributes attributes)  | 
TransactionAttribute | 
parseTransactionAnnotation(Transactional ann)  | 
public boolean isCandidateClass(Class<?> targetClass)
TransactionAnnotationParserTransactionAnnotationParser.
 If this method returns false, the methods on the given class
 will not get traversed for #parseTransactionAnnotation introspection.
 Returning false is therefore an optimization for non-affected
 classes, whereas true simply means that the class needs to get
 fully introspected for each method on the given class individually.
isCandidateClass in interface TransactionAnnotationParsertargetClass - the class to introspectfalse if the class is known to have no transaction
 annotations at class or method level; true otherwise. The default
 implementation returns true, leading to regular introspection.@Nullable public TransactionAttribute parseTransactionAnnotation(AnnotatedElement element)
TransactionAnnotationParserThis essentially parses a known transaction annotation into Spring's metadata
 attribute class. Returns null if the method/class is not transactional.
parseTransactionAnnotation in interface TransactionAnnotationParserelement - the annotated method or classnull if none foundAnnotationTransactionAttributeSource.determineTransactionAttribute(java.lang.reflect.AnnotatedElement)public TransactionAttribute parseTransactionAnnotation(Transactional ann)
protected TransactionAttribute parseTransactionAnnotation(AnnotationAttributes attributes)