Class TransactionAspectSupport
- All Implemented Interfaces:
Aware
,BeanFactoryAware
,InitializingBean
- Direct Known Subclasses:
TransactionInterceptor
TransactionInterceptor
or an AspectJ aspect.
This enables the underlying Spring transaction infrastructure to be used easily to implement an aspect for any aspect system.
Subclasses are responsible for calling methods in this class in the correct order.
If no transaction name has been specified in the TransactionAttribute
,
the exposed name will be the fully-qualified class name + "." + method name
(by default).
Uses the Strategy design pattern. A PlatformTransactionManager
or
ReactiveTransactionManager
implementation will perform the actual transaction
management, and a TransactionAttributeSource
(for example, annotation-based) is used
for determining transaction definitions for a particular class or method.
A transaction aspect is serializable if its TransactionManager
and
TransactionAttributeSource
are serializable.
- Since:
- 1.1
- Author:
- Rod Johnson, Juergen Hoeller, Stéphane Nicoll, Sam Brannen, Mark Paluch, Sebastien Deleuze, Enric Sala
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionprotected static interface
Simple callback interface for proceeding with the target invocation.protected static final class
Opaque object used to hold transaction information. -
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Check that required properties were set.protected void
Reset the TransactionInfo ThreadLocal.protected void
Clear the transaction manager cache.protected void
Execute after successful completion of call, but not after an exception was handled.protected void
Handle a throwable, completing the transaction.protected TransactionAspectSupport.TransactionInfo
createTransactionIfNecessary
(PlatformTransactionManager tm, TransactionAttribute txAttr, String joinpointIdentification) Create a transaction if necessary based on the given TransactionAttribute.protected static TransactionAspectSupport.TransactionInfo
Subclasses can use this to return the current TransactionInfo.static TransactionStatus
Return the transaction status of the current method invocation.protected TransactionManager
Deprecated.protected TransactionManager
determineTransactionManager
(TransactionAttribute txAttr, Class<?> targetClass) Determine the specific transaction manager to use for the given transaction.protected final BeanFactory
Return the BeanFactory to use for retrievingTransactionManager
beans.Return the transaction attribute source.Return the default transaction manager, ornull
if unknown.protected final String
Return the name of the default transaction manager bean.protected Object
invokeWithinTransaction
(Method method, Class<?> targetClass, TransactionAspectSupport.InvocationCallback invocation) General delegate for around-advice-based subclasses, delegating to several other template methods on this class.protected String
methodIdentification
(Method method, Class<?> targetClass) Convenience method to return a String representation of this Method for use in logging.protected TransactionAspectSupport.TransactionInfo
prepareTransactionInfo
(PlatformTransactionManager tm, TransactionAttribute txAttr, String joinpointIdentification, TransactionStatus status) Prepare a TransactionInfo for the given attribute and status object.void
setBeanFactory
(BeanFactory beanFactory) Set the BeanFactory to use for retrievingTransactionManager
beans.void
setTransactionAttributes
(Properties transactionAttributes) Set properties with method names as keys and transaction attribute descriptors (parsed via TransactionAttributeEditor) as values: for example, key = "myMethod", value = "PROPAGATION_REQUIRED,readOnly".void
setTransactionAttributeSource
(TransactionAttributeSource transactionAttributeSource) Set the transaction attribute source which is used to find transaction attributes.void
setTransactionAttributeSources
(TransactionAttributeSource... transactionAttributeSources) Set multiple transaction attribute sources which are used to find transaction attributes.void
setTransactionManager
(TransactionManager transactionManager) Specify the default transaction manager to use to drive transactions.void
setTransactionManagerBeanName
(String transactionManagerBeanName) Specify the name of the default transaction manager bean.
-
Field Details
-
logger
-
-
Constructor Details
-
TransactionAspectSupport
protected TransactionAspectSupport()
-
-
Method Details
-
currentTransactionInfo
@Nullable protected static TransactionAspectSupport.TransactionInfo currentTransactionInfo() throws NoTransactionExceptionSubclasses can use this to return the current TransactionInfo. Only subclasses that cannot handle all operations in one method, such as an AspectJ aspect involving distinct before and after advice, need to use this mechanism to get at the current TransactionInfo. An around advice such as an AOP Alliance MethodInterceptor can hold a reference to the TransactionInfo throughout the aspect method.A TransactionInfo will be returned even if no transaction was created. The
TransactionInfo.hasTransaction()
method can be used to query this.To find out about specific transaction characteristics, consider using TransactionSynchronizationManager's
isSynchronizationActive()
and/orisActualTransactionActive()
methods.- Returns:
- the TransactionInfo bound to this thread, or
null
if none - Throws:
NoTransactionException
- See Also:
-
currentTransactionStatus
Return the transaction status of the current method invocation. Mainly intended for code that wants to set the current transaction rollback-only but not throw an application exception.This exposes the locally declared transaction boundary with its declared name and characteristics, as managed by the aspect. Ar runtime, the local boundary may participate in an outer transaction: If you need transaction metadata from such an outer transaction (the actual resource transaction) instead, consider using
TransactionSynchronizationManager
.- Throws:
NoTransactionException
- if the transaction info cannot be found, because the method was invoked outside an AOP invocation context- See Also:
-
setTransactionManagerBeanName
Specify the name of the default transaction manager bean.This can either point to a traditional
PlatformTransactionManager
or aReactiveTransactionManager
for reactive transaction management. -
getTransactionManagerBeanName
Return the name of the default transaction manager bean. -
setTransactionManager
Specify the default transaction manager to use to drive transactions.This can either be a traditional
PlatformTransactionManager
or aReactiveTransactionManager
for reactive transaction management.The default transaction manager will be used if a qualifier has not been declared for a given transaction or if an explicit name for the default transaction manager bean has not been specified.
-
getTransactionManager
Return the default transaction manager, ornull
if unknown.This can either be a traditional
PlatformTransactionManager
or aReactiveTransactionManager
for reactive transaction management. -
setTransactionAttributes
Set properties with method names as keys and transaction attribute descriptors (parsed via TransactionAttributeEditor) as values: for example, key = "myMethod", value = "PROPAGATION_REQUIRED,readOnly".Note: Method names are always applied to the target class, no matter if defined in an interface or the class itself.
Internally, a NameMatchTransactionAttributeSource will be created from the given properties.
-
setTransactionAttributeSources
public void setTransactionAttributeSources(TransactionAttributeSource... transactionAttributeSources) Set multiple transaction attribute sources which are used to find transaction attributes. Will build a CompositeTransactionAttributeSource for the given sources. -
setTransactionAttributeSource
public void setTransactionAttributeSource(@Nullable TransactionAttributeSource transactionAttributeSource) Set the transaction attribute source which is used to find transaction attributes. If specifying a String property value, a PropertyEditor will create a MethodMapTransactionAttributeSource from the value. -
getTransactionAttributeSource
Return the transaction attribute source. -
setBeanFactory
Set the BeanFactory to use for retrievingTransactionManager
beans.- Specified by:
setBeanFactory
in interfaceBeanFactoryAware
- Parameters:
beanFactory
- owning BeanFactory (nevernull
). The bean can immediately call methods on the factory.- See Also:
-
getBeanFactory
Return the BeanFactory to use for retrievingTransactionManager
beans. -
afterPropertiesSet
public void afterPropertiesSet()Check that required properties were set.- Specified by:
afterPropertiesSet
in interfaceInitializingBean
-
invokeWithinTransaction
@Nullable protected Object invokeWithinTransaction(Method method, @Nullable Class<?> targetClass, TransactionAspectSupport.InvocationCallback invocation) throws Throwable General delegate for around-advice-based subclasses, delegating to several other template methods on this class. Able to handleCallbackPreferringPlatformTransactionManager
as well as regularPlatformTransactionManager
implementations andReactiveTransactionManager
implementations for reactive return types.- Parameters:
method
- the Method being invokedtargetClass
- the target class that we're invoking the method oninvocation
- the callback to use for proceeding with the target invocation- Returns:
- the return value of the method, if any
- Throws:
Throwable
- propagated from the target invocation
-
clearTransactionManagerCache
protected void clearTransactionManagerCache()Clear the transaction manager cache. -
determineTransactionManager
@Nullable protected TransactionManager determineTransactionManager(@Nullable TransactionAttribute txAttr, @Nullable Class<?> targetClass) Determine the specific transaction manager to use for the given transaction.- Parameters:
txAttr
- the current transaction attributetargetClass
- the target class that the attribute has been declared on- Since:
- 6.2
-
determineTransactionManager
@Deprecated @Nullable protected TransactionManager determineTransactionManager(@Nullable TransactionAttribute txAttr) Deprecated.as of 6.2, in favor ofdetermineTransactionManager(TransactionAttribute, Class)
Determine the specific transaction manager to use for the given transaction. -
methodIdentification
Convenience method to return a String representation of this Method for use in logging. Can be overridden in subclasses to provide a different identifier for the given method.The default implementation returns
null
, indicating the use ofDefaultTransactionAttribute.getDescriptor()
instead, ending up asClassUtils.getQualifiedMethodName(Method, Class)
.- Parameters:
method
- the method we're interested intargetClass
- the class that the method is being invoked on- Returns:
- a String representation identifying this method
- See Also:
-
createTransactionIfNecessary
protected TransactionAspectSupport.TransactionInfo createTransactionIfNecessary(@Nullable PlatformTransactionManager tm, @Nullable TransactionAttribute txAttr, String joinpointIdentification) Create a transaction if necessary based on the given TransactionAttribute.Allows callers to perform custom TransactionAttribute lookups through the TransactionAttributeSource.
- Parameters:
txAttr
- the TransactionAttribute (may benull
)joinpointIdentification
- the fully qualified method name (used for monitoring and logging purposes)- Returns:
- a TransactionInfo object, whether a transaction was created.
The
hasTransaction()
method on TransactionInfo can be used to tell if there was a transaction created. - See Also:
-
prepareTransactionInfo
protected TransactionAspectSupport.TransactionInfo prepareTransactionInfo(@Nullable PlatformTransactionManager tm, @Nullable TransactionAttribute txAttr, String joinpointIdentification, @Nullable TransactionStatus status) Prepare a TransactionInfo for the given attribute and status object.- Parameters:
txAttr
- the TransactionAttribute (may benull
)joinpointIdentification
- the fully qualified method name (used for monitoring and logging purposes)status
- the TransactionStatus for the current transaction- Returns:
- the prepared TransactionInfo object
-
commitTransactionAfterReturning
protected void commitTransactionAfterReturning(@Nullable TransactionAspectSupport.TransactionInfo txInfo) Execute after successful completion of call, but not after an exception was handled. Do nothing if we didn't create a transaction.- Parameters:
txInfo
- information about the current transaction
-
completeTransactionAfterThrowing
protected void completeTransactionAfterThrowing(@Nullable TransactionAspectSupport.TransactionInfo txInfo, Throwable ex) Handle a throwable, completing the transaction. We may commit or roll back, depending on the configuration.- Parameters:
txInfo
- information about the current transactionex
- throwable encountered
-
cleanupTransactionInfo
Reset the TransactionInfo ThreadLocal.Call this in all cases: exception or normal return!
- Parameters:
txInfo
- information about the current transaction (may benull
)
-
determineTransactionManager(TransactionAttribute, Class)