public abstract class AbstractReactiveTransactionManager extends Object implements ReactiveTransactionManager, Serializable
This base class provides the following workflow handling:
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.
TransactionSynchronizationManager
,
Serialized FormModifier and Type | Class and Description |
---|---|
protected static class |
AbstractReactiveTransactionManager.SuspendedResourcesHolder
Holder for suspended resources.
|
Constructor and Description |
---|
AbstractReactiveTransactionManager() |
Modifier and Type | Method and Description |
---|---|
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.
|
reactor.core.publisher.Mono<ReactiveTransaction> |
getReactiveTransaction(TransactionDefinition definition)
This implementation handles propagation behavior.
|
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 the
beforeCommit 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.
|
reactor.core.publisher.Mono<Void> |
rollback(ReactiveTransaction transaction)
This implementation of rollback handles participating in existing transactions.
|
protected transient Log logger
public final reactor.core.publisher.Mono<ReactiveTransaction> getReactiveTransaction(@Nullable TransactionDefinition definition)
doGetTransaction
, isExistingTransaction
and doBegin
.getReactiveTransaction
in interface ReactiveTransactionManager
definition
- the TransactionDefinition instance,
describing propagation behavior, isolation level, timeout etc.doGetTransaction(org.springframework.transaction.reactive.TransactionSynchronizationManager)
,
isExistingTransaction(java.lang.Object)
,
doBegin(org.springframework.transaction.reactive.TransactionSynchronizationManager, java.lang.Object, org.springframework.transaction.TransactionDefinition)
public final reactor.core.publisher.Mono<Void> commit(ReactiveTransaction transaction)
isRollbackOnly
, doCommit
and rollback
.commit
in interface ReactiveTransactionManager
transaction
- object returned by the getTransaction
methodTransactionExecution.isRollbackOnly()
,
doCommit(org.springframework.transaction.reactive.TransactionSynchronizationManager, org.springframework.transaction.reactive.GenericReactiveTransaction)
,
rollback(org.springframework.transaction.ReactiveTransaction)
public final reactor.core.publisher.Mono<Void> rollback(ReactiveTransaction transaction)
doRollback
and doSetRollbackOnly
.rollback
in interface ReactiveTransactionManager
transaction
- object returned by the getTransaction
methoddoRollback(org.springframework.transaction.reactive.TransactionSynchronizationManager, org.springframework.transaction.reactive.GenericReactiveTransaction)
,
doSetRollbackOnly(org.springframework.transaction.reactive.TransactionSynchronizationManager, org.springframework.transaction.reactive.GenericReactiveTransaction)
protected abstract Object doGetTransaction(TransactionSynchronizationManager synchronizationManager)
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, a doGetTransaction
implementation will usually
look for an existing transaction and store corresponding state in the
returned transaction object.
synchronizationManager
- the synchronization manager bound to the current transactionCannotCreateTransactionException
- if transaction support is not availabledoBegin(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()
protected boolean isExistingTransaction(Object transaction)
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.
transaction
- the transaction object returned by doGetTransactiondoGetTransaction(org.springframework.transaction.reactive.TransactionSynchronizationManager)
protected abstract reactor.core.publisher.Mono<Void> doBegin(TransactionSynchronizationManager synchronizationManager, Object transaction, TransactionDefinition definition)
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.
synchronizationManager
- the synchronization manager bound to the new transactiontransaction
- the transaction object returned by doGetTransaction
definition
- a TransactionDefinition instance, describing propagation
behavior, isolation level, read-only flag, timeout, and transaction nameNestedTransactionNotSupportedException
- if the underlying transaction does not support nesting (e.g. through savepoints)protected reactor.core.publisher.Mono<Object> doSuspend(TransactionSynchronizationManager synchronizationManager, Object transaction)
The default implementation throws a TransactionSuspensionNotSupportedException, assuming that transaction suspension is generally not supported.
synchronizationManager
- the synchronization manager bound to the current transactiontransaction
- the transaction object returned by doGetTransaction
TransactionSuspensionNotSupportedException
- if suspending is not supported by the transaction manager implementationdoResume(org.springframework.transaction.reactive.TransactionSynchronizationManager, java.lang.Object, java.lang.Object)
protected reactor.core.publisher.Mono<Void> doResume(TransactionSynchronizationManager synchronizationManager, @Nullable Object transaction, Object suspendedResources)
The default implementation throws a TransactionSuspensionNotSupportedException, assuming that transaction suspension is generally not supported.
synchronizationManager
- the synchronization manager bound to the current transactiontransaction
- the transaction object returned by doGetTransaction
suspendedResources
- the object that holds suspended resources,
as returned by doSuspendTransactionSuspensionNotSupportedException
- if suspending is not supported by the transaction manager implementationdoSuspend(org.springframework.transaction.reactive.TransactionSynchronizationManager, java.lang.Object)
protected reactor.core.publisher.Mono<Void> prepareForCommit(TransactionSynchronizationManager synchronizationManager, GenericReactiveTransaction status)
beforeCommit
synchronization callbacks occur.
Note that exceptions will get propagated to the commit caller and cause a rollback of the transaction.
synchronizationManager
- the synchronization manager bound to the current transactionstatus
- the status representation of the transactionRuntimeException
- in case of errors; will be propagated to the caller
(note: do not throw TransactionException subclasses here!)protected abstract reactor.core.publisher.Mono<Void> doCommit(TransactionSynchronizationManager synchronizationManager, GenericReactiveTransaction status)
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.
synchronizationManager
- the synchronization manager bound to the current transactionstatus
- the status representation of the transactionGenericReactiveTransaction.getTransaction()
protected abstract reactor.core.publisher.Mono<Void> doRollback(TransactionSynchronizationManager synchronizationManager, GenericReactiveTransaction status)
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.
synchronizationManager
- the synchronization manager bound to the current transactionstatus
- the status representation of the transactionGenericReactiveTransaction.getTransaction()
protected reactor.core.publisher.Mono<Void> doSetRollbackOnly(TransactionSynchronizationManager synchronizationManager, GenericReactiveTransaction status)
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.
synchronizationManager
- the synchronization manager bound to the current transactionstatus
- the status representation of the transactionprotected reactor.core.publisher.Mono<Void> registerAfterCompletionWithExistingTransaction(TransactionSynchronizationManager synchronizationManager, Object transaction, List<TransactionSynchronization> synchronizations)
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.
synchronizationManager
- the synchronization manager bound to the current transactiontransaction
- the transaction object returned by doGetTransaction
synchronizations
- a List of TransactionSynchronization objectsinvokeAfterCompletion(TransactionSynchronizationManager, List, int)
,
TransactionSynchronization.afterCompletion(int)
,
TransactionSynchronization.STATUS_UNKNOWN
protected reactor.core.publisher.Mono<Void> doCleanupAfterCompletion(TransactionSynchronizationManager synchronizationManager, Object transaction)
Called after doCommit
and doRollback
execution,
on any outcome. The default implementation does nothing.
Should not throw any exceptions but just issue warnings on errors.
synchronizationManager
- the synchronization manager bound to the current transactiontransaction
- the transaction object returned by doGetTransaction