Java org.springframework.transaction.jta JtaTransactionManager fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.transaction.jta JtaTransactionManager fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.transaction.jta JtaTransactionManager.

The text is from its open source code.

Constructor

JtaTransactionManager()
Create a new JtaTransactionManager instance, to be configured as bean.
JtaTransactionManager(UserTransaction userTransaction)
Create a new JtaTransactionManager instance.
JtaTransactionManager(TransactionManager transactionManager)
Create a new JtaTransactionManager instance.
JtaTransactionManager(UserTransaction userTransaction, TransactionManager transactionManager)
Create a new JtaTransactionManager instance.

Method

voidafterPropertiesSet()
Initialize the UserTransaction as well as the TransactionManager handle.
voidcommit(TransactionStatus status)
This implementation of commit handles participating in existing transactions and programmatic rollback requests.
TransactionStatusgetTransaction(@Nullable TransactionDefinition definition)
This implementation handles propagation behavior.
TransactionManagergetTransactionManager()
Return the JTA TransactionManager that this transaction manager uses, if any.
TransactionSynchronizationRegistrygetTransactionSynchronizationRegistry()
Return the JTA 1.1 TransactionSynchronizationRegistry that this transaction manager uses, if any.
UserTransactiongetUserTransaction()
Return the JTA UserTransaction that this transaction manager uses.
voidsetAllowCustomIsolationLevels(boolean allowCustomIsolationLevels)
Set whether to allow custom isolation levels to be specified.
voidsetTransactionManager(@Nullable TransactionManager transactionManager)
Set the JTA TransactionManager to use as direct reference.
voidsetUserTransaction(@Nullable UserTransaction userTransaction)
Set the JTA UserTransaction to use as direct reference.