Class AbstractReactiveTransactionManager
- All Implemented Interfaces:
Serializable
,ConfigurableTransactionManager
,ReactiveTransactionManager
,TransactionManager
- Direct Known Subclasses:
R2dbcTransactionManager
This base class provides the following workflow handling:
- determines if there is an existing transaction;
- applies the appropriate propagation behavior;
- suspends and resumes transactions if necessary;
- checks the rollback-only flag on commit;
- applies the appropriate modification on rollback (actual rollback or setting rollback-only);
- triggers registered synchronization callbacks.
Subclasses have to implement specific template methods for specific states of a transaction, e.g.: begin, suspend, resume, commit, rollback. The most important of them are abstract and must be provided by a concrete implementation; for the rest, defaults are provided, so overriding is optional.
Transaction synchronization is a generic mechanism for registering callbacks that get invoked at transaction completion time. This is mainly used internally by the data access support classes for R2DBC, MongoDB, etc. The same mechanism can also be leveraged for custom synchronization needs in an application.
The state of this class is serializable, to allow for serializing the
transaction strategy along with proxies that carry a transaction interceptor.
It is up to subclasses if they wish to make their state to be serializable too.
They should implement the java.io.Serializable
marker interface in
that case, and potentially a private readObject()
method (according
to Java serialization rules) if they need to restore any transient state.
- Since:
- 5.2
- Author:
- Mark Paluch, Juergen Hoeller
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionprotected static final class
Holder for suspended resources. -
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal reactor.core.publisher.Mono<Void>
commit
(ReactiveTransaction transaction) This implementation of commit handles participating in existing transactions and programmatic rollback requests.protected abstract reactor.core.publisher.Mono<Void>
doBegin
(TransactionSynchronizationManager synchronizationManager, Object transaction, TransactionDefinition definition) Begin a new transaction with semantics according to the given transaction definition.protected reactor.core.publisher.Mono<Void>
doCleanupAfterCompletion
(TransactionSynchronizationManager synchronizationManager, Object transaction) Cleanup resources after transaction completion.protected abstract reactor.core.publisher.Mono<Void>
doCommit
(TransactionSynchronizationManager synchronizationManager, GenericReactiveTransaction status) Perform an actual commit of the given transaction.protected abstract Object
doGetTransaction
(TransactionSynchronizationManager synchronizationManager) Return a transaction object for the current transaction state.protected reactor.core.publisher.Mono<Void>
doResume
(TransactionSynchronizationManager synchronizationManager, Object transaction, Object suspendedResources) Resume the resources of the current transaction.protected abstract reactor.core.publisher.Mono<Void>
doRollback
(TransactionSynchronizationManager synchronizationManager, GenericReactiveTransaction status) Perform an actual rollback of the given transaction.protected reactor.core.publisher.Mono<Void>
doSetRollbackOnly
(TransactionSynchronizationManager synchronizationManager, GenericReactiveTransaction status) Set the given transaction rollback-only.protected reactor.core.publisher.Mono<Object>
doSuspend
(TransactionSynchronizationManager synchronizationManager, Object transaction) Suspend the resources of the current transaction.final reactor.core.publisher.Mono<ReactiveTransaction>
getReactiveTransaction
(TransactionDefinition definition) This implementation handles propagation behavior.Return the registered transaction execution listeners for this transaction manager.protected boolean
isExistingTransaction
(Object transaction) Check if the given transaction object indicates an existing transaction (that is, a transaction which has already started).protected reactor.core.publisher.Mono<Void>
prepareForCommit
(TransactionSynchronizationManager synchronizationManager, GenericReactiveTransaction status) Make preparations for commit, to be performed before thebeforeCommit
synchronization callbacks occur.protected reactor.core.publisher.Mono<Void>
registerAfterCompletionWithExistingTransaction
(TransactionSynchronizationManager synchronizationManager, Object transaction, List<TransactionSynchronization> synchronizations) Register the given list of transaction synchronizations with the existing transaction.final reactor.core.publisher.Mono<Void>
rollback
(ReactiveTransaction transaction) This implementation of rollback handles participating in existing transactions.final void
Set the transaction execution listeners for begin/commit/rollback callbacks from this transaction manager.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.transaction.ConfigurableTransactionManager
addListener
-
Field Details
-
logger
-
-
Constructor Details
-
AbstractReactiveTransactionManager
public AbstractReactiveTransactionManager()
-
-
Method Details
-
setTransactionExecutionListeners
public final void setTransactionExecutionListeners(Collection<TransactionExecutionListener> listeners) Description copied from interface:ConfigurableTransactionManager
Set the transaction execution listeners for begin/commit/rollback callbacks from this transaction manager. -
getTransactionExecutionListeners
Description copied from interface:ConfigurableTransactionManager
Return the registered transaction execution listeners for this transaction manager. -
getReactiveTransaction
public final reactor.core.publisher.Mono<ReactiveTransaction> getReactiveTransaction(@Nullable TransactionDefinition definition) This implementation handles propagation behavior. Delegates todoGetTransaction
,isExistingTransaction
anddoBegin
.- Specified by:
getReactiveTransaction
in interfaceReactiveTransactionManager
- Parameters:
definition
- the TransactionDefinition instance, describing propagation behavior, isolation level, timeout etc.- Returns:
- transaction status object representing the new or current transaction
- See Also:
-
commit
This implementation of commit handles participating in existing transactions and programmatic rollback requests. Delegates toisRollbackOnly
,doCommit
androllback
.- Specified by:
commit
in interfaceReactiveTransactionManager
- Parameters:
transaction
- object returned by thegetTransaction
method- See Also:
-
rollback
This implementation of rollback handles participating in existing transactions. Delegates todoRollback
anddoSetRollbackOnly
.- Specified by:
rollback
in interfaceReactiveTransactionManager
- Parameters:
transaction
- object returned by thegetTransaction
method- See Also:
-
doRollback(org.springframework.transaction.reactive.TransactionSynchronizationManager, org.springframework.transaction.reactive.GenericReactiveTransaction)
doSetRollbackOnly(org.springframework.transaction.reactive.TransactionSynchronizationManager, org.springframework.transaction.reactive.GenericReactiveTransaction)
-
doGetTransaction
protected abstract Object doGetTransaction(TransactionSynchronizationManager synchronizationManager) Return a transaction object for the current transaction state.The returned object will usually be specific to the concrete transaction manager implementation, carrying corresponding transaction state in a modifiable fashion. This object will be passed into the other template methods (e.g. doBegin and doCommit), either directly or as part of a DefaultReactiveTransactionStatus instance.
The returned object should contain information about any existing transaction, that is, a transaction that has already started before the current
getTransaction
call on the transaction manager. Consequently, adoGetTransaction
implementation will usually look for an existing transaction and store corresponding state in the returned transaction object.- Parameters:
synchronizationManager
- the synchronization manager bound to the current transaction- Returns:
- the current transaction object
- Throws:
CannotCreateTransactionException
- if transaction support is not available- See Also:
-
doBegin(org.springframework.transaction.reactive.TransactionSynchronizationManager, java.lang.Object, org.springframework.transaction.TransactionDefinition)
doCommit(org.springframework.transaction.reactive.TransactionSynchronizationManager, org.springframework.transaction.reactive.GenericReactiveTransaction)
doRollback(org.springframework.transaction.reactive.TransactionSynchronizationManager, org.springframework.transaction.reactive.GenericReactiveTransaction)
GenericReactiveTransaction.getTransaction()
-
isExistingTransaction
Check if the given transaction object indicates an existing transaction (that is, a transaction which has already started).The result will be evaluated according to the specified propagation behavior for the new transaction. An existing transaction might get suspended (in case of PROPAGATION_REQUIRES_NEW), or the new transaction might participate in the existing one (in case of PROPAGATION_REQUIRED).
The default implementation returns
false
, assuming that participating in existing transactions is generally not supported. Subclasses are of course encouraged to provide such support.- Parameters:
transaction
- the transaction object returned by doGetTransaction- Returns:
- if there is an existing transaction
- See Also:
-
doBegin
protected abstract reactor.core.publisher.Mono<Void> doBegin(TransactionSynchronizationManager synchronizationManager, Object transaction, TransactionDefinition definition) Begin a new transaction with semantics according to the given transaction definition. Does not have to care about applying the propagation behavior, as this has already been handled by this abstract manager.This method gets called when the transaction manager has decided to actually start a new transaction. Either there wasn't any transaction before, or the previous transaction has been suspended.
A special scenario is a nested transaction: This method will be called to start a nested transaction when necessary. In such a context, there will be an active transaction: The implementation of this method has to detect this and start an appropriate nested transaction.
- Parameters:
synchronizationManager
- the synchronization manager bound to the new transactiontransaction
- the transaction object returned bydoGetTransaction
definition
- a TransactionDefinition instance, describing propagation behavior, isolation level, read-only flag, timeout, and transaction name- Throws:
NestedTransactionNotSupportedException
- if the underlying transaction does not support nesting (e.g. through savepoints)
-
doSuspend
protected reactor.core.publisher.Mono<Object> doSuspend(TransactionSynchronizationManager synchronizationManager, Object transaction) Suspend the resources of the current transaction. Transaction synchronization will already have been suspended.The default implementation throws a TransactionSuspensionNotSupportedException, assuming that transaction suspension is generally not supported.
- Parameters:
synchronizationManager
- the synchronization manager bound to the current transactiontransaction
- the transaction object returned bydoGetTransaction
- Returns:
- an object that holds suspended resources (will be kept unexamined for passing it into doResume)
- Throws:
TransactionSuspensionNotSupportedException
- if suspending is not supported by the transaction manager implementation- See Also:
-
doResume
protected reactor.core.publisher.Mono<Void> doResume(TransactionSynchronizationManager synchronizationManager, @Nullable Object transaction, Object suspendedResources) Resume the resources of the current transaction. Transaction synchronization will be resumed afterwards.The default implementation throws a TransactionSuspensionNotSupportedException, assuming that transaction suspension is generally not supported.
- Parameters:
synchronizationManager
- the synchronization manager bound to the current transactiontransaction
- the transaction object returned bydoGetTransaction
suspendedResources
- the object that holds suspended resources, as returned by doSuspend- Throws:
TransactionSuspensionNotSupportedException
- if suspending is not supported by the transaction manager implementation- See Also:
-
prepareForCommit
protected reactor.core.publisher.Mono<Void> prepareForCommit(TransactionSynchronizationManager synchronizationManager, GenericReactiveTransaction status) Make preparations for commit, to be performed before thebeforeCommit
synchronization callbacks occur.Note that exceptions will get propagated to the commit caller and cause a rollback of the transaction.
- Parameters:
synchronizationManager
- the synchronization manager bound to the current transactionstatus
- the status representation of the transaction- Throws:
RuntimeException
- in case of errors; will be propagated to the caller (note: do not throw TransactionException subclasses here!)
-
doCommit
protected abstract reactor.core.publisher.Mono<Void> doCommit(TransactionSynchronizationManager synchronizationManager, GenericReactiveTransaction status) Perform an actual commit of the given transaction.An implementation does not need to check the "new transaction" flag or the rollback-only flag; this will already have been handled before. Usually, a straight commit will be performed on the transaction object contained in the passed-in status.
- Parameters:
synchronizationManager
- the synchronization manager bound to the current transactionstatus
- the status representation of the transaction- See Also:
-
doRollback
protected abstract reactor.core.publisher.Mono<Void> doRollback(TransactionSynchronizationManager synchronizationManager, GenericReactiveTransaction status) Perform an actual rollback of the given transaction.An implementation does not need to check the "new transaction" flag; this will already have been handled before. Usually, a straight rollback will be performed on the transaction object contained in the passed-in status.
- Parameters:
synchronizationManager
- the synchronization manager bound to the current transactionstatus
- the status representation of the transaction- See Also:
-
doSetRollbackOnly
protected reactor.core.publisher.Mono<Void> doSetRollbackOnly(TransactionSynchronizationManager synchronizationManager, GenericReactiveTransaction status) Set the given transaction rollback-only. Only called on rollback if the current transaction participates in an existing one.The default implementation throws an IllegalTransactionStateException, assuming that participating in existing transactions is generally not supported. Subclasses are of course encouraged to provide such support.
- Parameters:
synchronizationManager
- the synchronization manager bound to the current transactionstatus
- the status representation of the transaction
-
registerAfterCompletionWithExistingTransaction
protected reactor.core.publisher.Mono<Void> registerAfterCompletionWithExistingTransaction(TransactionSynchronizationManager synchronizationManager, Object transaction, List<TransactionSynchronization> synchronizations) Register the given list of transaction synchronizations with the existing transaction.Invoked when the control of the Spring transaction manager and thus all Spring transaction synchronizations end, without the transaction being completed yet. This is for example the case when participating in an existing JTA or EJB CMT transaction.
The default implementation simply invokes the
afterCompletion
methods immediately, passing in "STATUS_UNKNOWN". This is the best we can do if there's no chance to determine the actual outcome of the outer transaction.- Parameters:
synchronizationManager
- the synchronization manager bound to the current transactiontransaction
- the transaction object returned bydoGetTransaction
synchronizations
- a List of TransactionSynchronization objects- See Also:
-
invokeAfterCompletion(TransactionSynchronizationManager, List, int)
TransactionSynchronization.afterCompletion(int)
TransactionSynchronization.STATUS_UNKNOWN
-
doCleanupAfterCompletion
protected reactor.core.publisher.Mono<Void> doCleanupAfterCompletion(TransactionSynchronizationManager synchronizationManager, Object transaction) Cleanup resources after transaction completion.Called after
doCommit
anddoRollback
execution, on any outcome. The default implementation does nothing.Should not throw any exceptions but just issue warnings on errors.
- Parameters:
synchronizationManager
- the synchronization manager bound to the current transactiontransaction
- the transaction object returned bydoGetTransaction
-