public class RabbitTransactionManager extends AbstractPlatformTransactionManager implements ResourceTransactionManager, InitializingBean
PlatformTransactionManager
implementation for a single Rabbit
ConnectionFactory
. Binds a Rabbit Channel from the specified ConnectionFactory to the thread, potentially
allowing for one thread-bound channel per ConnectionFactory.
This local strategy is an alternative to executing Rabbit operations within, and synchronized with, external transactions. This strategy is not able to provide XA transactions, for example in order to share transactions between messaging and database access.
Application code is required to retrieve the transactional Rabbit resources via
ConnectionFactoryUtils.getTransactionalResourceHolder(ConnectionFactory, boolean)
instead of a standard
Connection.createChannel(boolean)
call with subsequent
Channel creation. Spring's
RabbitTemplate
will
autodetect a thread-bound Channel and automatically participate in it.
The use of CachingConnectionFactory
as a target for this transaction manager is strongly recommended.
CachingConnectionFactory uses a single Rabbit Connection for all Rabbit access in order to avoid the overhead of
repeated Connection creation, as well as maintaining a cache of Channels. Each transaction will then share the same
Rabbit Connection, while still using its own individual Rabbit Channel.
Transaction synchronization is turned off by default, as this manager might be used alongside a datastore-based Spring transaction manager such as the JDBC org.springframework.jdbc.datasource.DataSourceTransactionManager, which has stronger needs for synchronization.
AbstractPlatformTransactionManager.SuspendedResourcesHolder
logger, SYNCHRONIZATION_ALWAYS, SYNCHRONIZATION_NEVER, SYNCHRONIZATION_ON_ACTUAL_TRANSACTION
Constructor and Description |
---|
RabbitTransactionManager()
Create a new RabbitTransactionManager for bean-style usage.
|
RabbitTransactionManager(ConnectionFactory connectionFactory)
Create a new RabbitTransactionManager, given a ConnectionFactory.
|
Modifier and Type | Method and Description |
---|---|
void |
afterPropertiesSet()
Make sure the ConnectionFactory has been set.
|
protected void |
doBegin(Object transaction,
TransactionDefinition definition) |
protected void |
doCleanupAfterCompletion(Object transaction) |
protected void |
doCommit(DefaultTransactionStatus status) |
protected Object |
doGetTransaction() |
protected void |
doResume(Object transaction,
Object suspendedResources) |
protected void |
doRollback(DefaultTransactionStatus status) |
protected void |
doSetRollbackOnly(DefaultTransactionStatus status) |
protected Object |
doSuspend(Object transaction) |
ConnectionFactory |
getConnectionFactory() |
Object |
getResourceFactory() |
protected boolean |
isExistingTransaction(Object transaction) |
void |
setConnectionFactory(ConnectionFactory connectionFactory) |
commit, determineTimeout, getDefaultTimeout, getTransaction, getTransactionSynchronization, invokeAfterCompletion, isFailEarlyOnGlobalRollbackOnly, isGlobalRollbackOnParticipationFailure, isNestedTransactionAllowed, isRollbackOnCommitFailure, isValidateExistingTransaction, newTransactionStatus, prepareForCommit, prepareSynchronization, prepareTransactionStatus, registerAfterCompletionWithExistingTransaction, resume, rollback, setDefaultTimeout, setFailEarlyOnGlobalRollbackOnly, setGlobalRollbackOnParticipationFailure, setNestedTransactionAllowed, setRollbackOnCommitFailure, setTransactionSynchronization, setTransactionSynchronizationName, setValidateExistingTransaction, shouldCommitOnGlobalRollbackOnly, suspend, triggerBeforeCommit, triggerBeforeCompletion, useSavepointForNestedTransaction
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
commit, getTransaction, rollback
public RabbitTransactionManager()
Note: The ConnectionFactory has to be set before using the instance. This constructor can be used to prepare a RabbitTemplate via a BeanFactory, typically setting the ConnectionFactory via setConnectionFactory.
Turns off transaction synchronization by default, as this manager might be used alongside a datastore-based Spring transaction manager like DataSourceTransactionManager, which has stronger needs for synchronization. Only one manager is allowed to drive synchronization at any point of time.
public RabbitTransactionManager(ConnectionFactory connectionFactory)
connectionFactory
- the ConnectionFactory to usepublic void setConnectionFactory(ConnectionFactory connectionFactory)
connectionFactory
- the connectionFactory to setpublic ConnectionFactory getConnectionFactory()
public void afterPropertiesSet()
afterPropertiesSet
in interface InitializingBean
public Object getResourceFactory()
getResourceFactory
in interface ResourceTransactionManager
protected Object doGetTransaction()
doGetTransaction
in class AbstractPlatformTransactionManager
protected boolean isExistingTransaction(Object transaction)
isExistingTransaction
in class AbstractPlatformTransactionManager
protected void doBegin(Object transaction, TransactionDefinition definition)
doBegin
in class AbstractPlatformTransactionManager
protected Object doSuspend(Object transaction)
doSuspend
in class AbstractPlatformTransactionManager
protected void doResume(Object transaction, Object suspendedResources)
doResume
in class AbstractPlatformTransactionManager
protected void doCommit(DefaultTransactionStatus status)
doCommit
in class AbstractPlatformTransactionManager
protected void doRollback(DefaultTransactionStatus status)
doRollback
in class AbstractPlatformTransactionManager
protected void doSetRollbackOnly(DefaultTransactionStatus status)
doSetRollbackOnly
in class AbstractPlatformTransactionManager
protected void doCleanupAfterCompletion(Object transaction)
doCleanupAfterCompletion
in class AbstractPlatformTransactionManager