Class AnnotationTransactionAttributeSource
- All Implemented Interfaces:
Serializable
,Aware
,EmbeddedValueResolverAware
,TransactionAttributeSource
TransactionAttributeSource
interface for working with transaction metadata from annotations.
This class reads Spring's @Transactional
annotation and
exposes corresponding transaction attributes to Spring's transaction infrastructure.
Also supports JTA's Transactional
and EJB's
TransactionAttribute
annotation (if present).
This class may also serve as base class for a custom TransactionAttributeSource,
or get customized through TransactionAnnotationParser
strategies.
- Since:
- 1.2
- Author:
- Colin Sampaleanu, Juergen Hoeller
- See Also:
-
Transactional
TransactionAnnotationParser
SpringTransactionAnnotationParser
Ejb3TransactionAnnotationParser
TransactionAspectSupport.setTransactionAttributeSource(org.springframework.transaction.interceptor.TransactionAttributeSource)
TransactionProxyFactoryBean.setTransactionAttributeSource(org.springframework.transaction.interceptor.TransactionAttributeSource)
- Serialized Form
-
Field Summary
Fields inherited from class org.springframework.transaction.interceptor.AbstractFallbackTransactionAttributeSource
logger
-
Constructor Summary
ConstructorDescriptionCreate a default AnnotationTransactionAttributeSource, supporting public methods that carry theTransactional
annotation or the EJB3TransactionAttribute
annotation.AnnotationTransactionAttributeSource
(boolean publicMethodsOnly) Create a custom AnnotationTransactionAttributeSource, supporting public methods that carry theTransactional
annotation or the EJB3TransactionAttribute
annotation.AnnotationTransactionAttributeSource
(TransactionAnnotationParser annotationParser) Create a custom AnnotationTransactionAttributeSource.AnnotationTransactionAttributeSource
(TransactionAnnotationParser... annotationParsers) Create a custom AnnotationTransactionAttributeSource. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addDefaultRollbackRule
(RollbackRuleAttribute rollbackRule) Add a default rollback rule, to be applied to all rule-based transaction attributes returned by this source.protected boolean
By default, only public methods can be made transactional.protected TransactionAttribute
Determine the transaction attribute for the given method or class.boolean
protected TransactionAttribute
findTransactionAttribute
(Class<?> clazz) Subclasses need to implement this to return the transaction attribute for the given class, if any.protected TransactionAttribute
findTransactionAttribute
(Method method) Subclasses need to implement this to return the transaction attribute for the given method, if any.int
hashCode()
boolean
isCandidateClass
(Class<?> targetClass) Determine whether the given class is a candidate for transaction attributes in the metadata format of thisTransactionAttributeSource
.void
setPublicMethodsOnly
(boolean publicMethodsOnly) Set whether transactional methods are expected to be public.Methods inherited from class org.springframework.transaction.interceptor.AbstractFallbackTransactionAttributeSource
computeTransactionAttribute, getCacheKey, getTransactionAttribute, hasTransactionAttribute, setEmbeddedValueResolver
-
Constructor Details
-
AnnotationTransactionAttributeSource
public AnnotationTransactionAttributeSource()Create a default AnnotationTransactionAttributeSource, supporting public methods that carry theTransactional
annotation or the EJB3TransactionAttribute
annotation. -
AnnotationTransactionAttributeSource
public AnnotationTransactionAttributeSource(boolean publicMethodsOnly) Create a custom AnnotationTransactionAttributeSource, supporting public methods that carry theTransactional
annotation or the EJB3TransactionAttribute
annotation.- Parameters:
publicMethodsOnly
- whether to support public methods that carry theTransactional
annotation only (typically for use with proxy-based AOP), or protected/private methods as well (typically used with AspectJ class weaving)- See Also:
-
AnnotationTransactionAttributeSource
Create a custom AnnotationTransactionAttributeSource.- Parameters:
annotationParser
- the TransactionAnnotationParser to use
-
AnnotationTransactionAttributeSource
Create a custom AnnotationTransactionAttributeSource.- Parameters:
annotationParsers
- the TransactionAnnotationParsers to use
-
-
Method Details
-
setPublicMethodsOnly
public void setPublicMethodsOnly(boolean publicMethodsOnly) Set whether transactional methods are expected to be public.The default is
true
.- Since:
- 6.2
- See Also:
-
addDefaultRollbackRule
Add a default rollback rule, to be applied to all rule-based transaction attributes returned by this source.By default, a rollback will be triggered on unchecked exceptions but not on checked exceptions. A default rule may override this while still respecting any custom rules in the transaction attribute.
- Parameters:
rollbackRule
- a rollback rule overriding the default behavior, for example,RollbackRuleAttribute.ROLLBACK_ON_ALL_EXCEPTIONS
- Since:
- 6.2
- See Also:
-
isCandidateClass
Description copied from interface:TransactionAttributeSource
Determine whether the given class is a candidate for transaction attributes in the metadata format of thisTransactionAttributeSource
.If this method returns
false
, the methods on the given class will not get traversed forTransactionAttributeSource.getTransactionAttribute(java.lang.reflect.Method, java.lang.Class<?>)
introspection. Returningfalse
is therefore an optimization for non-affected classes, whereastrue
simply means that the class needs to get fully introspected for each method on the given class individually.- Specified by:
isCandidateClass
in interfaceTransactionAttributeSource
- Parameters:
targetClass
- the class to introspect- Returns:
false
if the class is known to have no transaction attributes at class or method level;true
otherwise. The default implementation returnstrue
, leading to regular introspection.- See Also:
-
findTransactionAttribute
Description copied from class:AbstractFallbackTransactionAttributeSource
Subclasses need to implement this to return the transaction attribute for the given class, if any.- Specified by:
findTransactionAttribute
in classAbstractFallbackTransactionAttributeSource
- Parameters:
clazz
- the class to retrieve the attribute for- Returns:
- all transaction attribute associated with this class, or
null
if none
-
findTransactionAttribute
Description copied from class:AbstractFallbackTransactionAttributeSource
Subclasses need to implement this to return the transaction attribute for the given method, if any.- Specified by:
findTransactionAttribute
in classAbstractFallbackTransactionAttributeSource
- Parameters:
method
- the method to retrieve the attribute for- Returns:
- all transaction attribute associated with this method, or
null
if none
-
determineTransactionAttribute
Determine the transaction attribute for the given method or class.This implementation delegates to configured
TransactionAnnotationParsers
for parsing known annotations into Spring's metadata attribute class. Returnsnull
if it's not transactional.Can be overridden to support custom annotations that carry transaction metadata.
- Parameters:
element
- the annotated method or class- Returns:
- the configured transaction attribute, or
null
if none was found
-
allowPublicMethodsOnly
protected boolean allowPublicMethodsOnly()By default, only public methods can be made transactional.- Overrides:
allowPublicMethodsOnly
in classAbstractFallbackTransactionAttributeSource
- See Also:
-
equals
-
hashCode
public int hashCode()
-