public class

JtaTransactionManager

extends AbstractPlatformTransactionManager
implements Serializable InitializingBean TransactionFactory
java.lang.Object
   ↳ org.springframework.transaction.support.AbstractPlatformTransactionManager
     ↳ org.springframework.transaction.jta.JtaTransactionManager
Known Direct Subclasses

Class Overview

PlatformTransactionManager implementation for JTA, delegating to a backend JTA provider. This is typically used to delegate to a Java EE server's transaction coordinator, but may also be configured with a local JTA provider which is embedded within the application.

This transaction manager is appropriate for handling distributed transactions, i.e. transactions that span multiple resources, and for controlling transactions on application server resources (e.g. JDBC DataSources available in JNDI) in general. For a single JDBC DataSource, DataSourceTransactionManager is perfectly sufficient, and for accessing a single resource with Hibernate (including transactional cache), HibernateTransactionManager is appropriate, for example.

For typical JTA transactions (REQUIRED, SUPPORTS, MANDATORY, NEVER), a plain JtaTransactionManager definition is all you need, portable across all Java EE servers. This corresponds to the functionality of the JTA UserTransaction, for which Java EE specifies a standard JNDI name ("java:comp/UserTransaction"). There is no need to configure a server-specific TransactionManager lookup for this kind of JTA usage.

Transaction suspension (REQUIRES_NEW, NOT_SUPPORTED) is just available with a JTA TransactionManager being registered. Common TransactionManager locations are autodetected by JtaTransactionManager, provided that the "autodetectTransactionManager" flag is set to "true" (which it is by default).

Note: Support for the JTA TransactionManager interface is not required by Java EE. Almost all Java EE servers expose it, but do so as extension to EE. There might be some issues with compatibility, despite the TransactionManager interface being part of JTA. As a consequence, Spring provides various vendor-specific PlatformTransactionManagers, which are recommended to be used if appropriate: WebLogicJtaTransactionManager, WebSphereUowTransactionManager and OC4JJtaTransactionManager. For all other Java EE servers, the standard JtaTransactionManager is sufficient.

This pure JtaTransactionManager class supports timeouts but not per-transaction isolation levels. Custom subclasses may override the doJtaBegin(JtaTransactionObject, TransactionDefinition) method for specific JTA extensions in order to provide this functionality; Spring includes corresponding WebLogicJtaTransactionManager and OC4JJtaTransactionManager classes, for BEA's WebLogic Server and Oracle's OC4J, respectively. Such adapters for specific Java EE transaction coordinators may also expose transaction names for monitoring; with standard JTA, transaction names will simply be ignored.

Consider using Spring's tx:jta-transaction-manager configuration element for automatically picking the appropriate JTA platform transaction manager (automatically detecting WebLogic, WebSphere and OC4J).

JTA 1.1 adds the TransactionSynchronizationRegistry facility, as public Java EE 5 API in addition to the standard JTA UserTransaction handle. As of Spring 2.5, this JtaTransactionManager autodetects the TransactionSynchronizationRegistry and uses it for registering Spring-managed synchronizations when participating in an existing JTA transaction (e.g. controlled by EJB CMT). If no TransactionSynchronizationRegistry is available (or the JTA 1.1 API isn't available), then such synchronizations will be registered via the (non-EE) JTA TransactionManager handle.

This class is serializable. However, active synchronizations do not survive serialization.

See Also

Summary

Constants
String DEFAULT_TRANSACTION_SYNCHRONIZATION_REGISTRY_NAME Standard Java EE 5 JNDI location for the JTA TransactionSynchronizationRegistry.
String DEFAULT_USER_TRANSACTION_NAME Default JNDI location for the JTA UserTransaction.
[Expand]
Inherited Constants
From class org.springframework.transaction.support.AbstractPlatformTransactionManager
Fields
public static final String[] FALLBACK_TRANSACTION_MANAGER_NAMES Fallback JNDI locations for the JTA TransactionManager.
[Expand]
Inherited Fields
From class org.springframework.transaction.support.AbstractPlatformTransactionManager
Public Constructors
JtaTransactionManager()
Create a new JtaTransactionManager instance, to be configured as bean.
JtaTransactionManager(UserTransaction userTransaction)
Create a new JtaTransactionManager instance.
JtaTransactionManager(UserTransaction userTransaction, TransactionManager transactionManager)
Create a new JtaTransactionManager instance.
JtaTransactionManager(TransactionManager transactionManager)
Create a new JtaTransactionManager instance.
Public Methods
void afterPropertiesSet()
Initialize the UserTransaction as well as the TransactionManager handle.
Transaction createTransaction(String name, int timeout)
Create an active Transaction object based on the given name and timeout.
Properties getJndiEnvironment()
Return the JNDI environment to use for JNDI lookups.
JndiTemplate getJndiTemplate()
Return the JndiTemplate used for JNDI lookups.
TransactionManager getTransactionManager()
Return the JTA TransactionManager that this transaction manager uses.
UserTransaction getUserTransaction()
Return the JTA UserTransaction that this transaction manager uses.
void setAllowCustomIsolationLevels(boolean allowCustomIsolationLevels)
Set whether to allow custom isolation levels to be specified.
void setAutodetectTransactionManager(boolean autodetectTransactionManager)
Set whether to autodetect a JTA UserTransaction object that implements the JTA TransactionManager interface too (i.e.
void setAutodetectUserTransaction(boolean autodetectUserTransaction)
Set whether to autodetect the JTA UserTransaction at its default JNDI location "java:comp/UserTransaction", as specified by Java EE.
void setCacheUserTransaction(boolean cacheUserTransaction)
Set whether to cache the JTA UserTransaction object fetched from JNDI.
void setJndiEnvironment(Properties jndiEnvironment)
Set the JNDI environment to use for JNDI lookups.
void setJndiTemplate(JndiTemplate jndiTemplate)
Set the JndiTemplate to use for JNDI lookups.
void setTransactionManager(TransactionManager transactionManager)
Set the JTA TransactionManager to use as direct reference.
void setTransactionManagerName(String transactionManagerName)
Set the JNDI name of the JTA TransactionManager.
void setTransactionSynchronizationRegistryName(String transactionSynchronizationRegistryName)
Set the JNDI name of the JTA 1.1 TransactionSynchronizationRegistry.
void setUserTransaction(UserTransaction userTransaction)
Set the JTA UserTransaction to use as direct reference.
void setUserTransactionName(String userTransactionName)
Set the JNDI name of the JTA UserTransaction.
boolean supportsResourceAdapterManagedTransactions()
Determine whether the underlying transaction manager supports XA transactions managed by a resource adapter (i.e.
Protected Methods
void applyIsolationLevel(JtaTransactionObject txObject, int isolationLevel)
Apply the given transaction isolation level.
void applyTimeout(JtaTransactionObject txObject, int timeout)
Apply the given transaction timeout.
UserTransaction buildUserTransaction(TransactionManager transactionManager)
Build a UserTransaction handle based on the given TransactionManager.
void checkUserTransactionAndTransactionManager()
Check the UserTransaction as well as the TransactionManager handle, assuming standard JTA requirements.
void doBegin(Object transaction, TransactionDefinition definition)
Begin a new transaction with semantics according to the given transaction definition.
void doCommit(DefaultTransactionStatus status)
Perform an actual commit of the given transaction.
JtaTransactionObject doGetJtaTransaction(UserTransaction ut)
Get a JTA transaction object for the given current UserTransaction.
Object doGetTransaction()
This implementation returns a JtaTransactionObject instance for the JTA UserTransaction.
void doJtaBegin(JtaTransactionObject txObject, TransactionDefinition definition)
Perform a JTA begin on the JTA UserTransaction or TransactionManager.
void doJtaResume(JtaTransactionObject txObject, Object suspendedTransaction)
Perform a JTA resume on the JTA TransactionManager.
Object doJtaSuspend(JtaTransactionObject txObject)
Perform a JTA suspend on the JTA TransactionManager.
void doRegisterAfterCompletionWithJtaTransaction(JtaTransactionObject txObject, List<TransactionSynchronization> synchronizations)
Register a JTA synchronization on the JTA TransactionManager, for calling afterCompletion on the given Spring TransactionSynchronizations.
void doResume(Object transaction, Object suspendedResources)
Resume the resources of the current transaction.
void doRollback(DefaultTransactionStatus status)
Perform an actual rollback of the given transaction.
void doSetRollbackOnly(DefaultTransactionStatus status)
Set the given transaction rollback-only.
Object doSuspend(Object transaction)
Suspend the resources of the current transaction.
TransactionManager findTransactionManager(UserTransaction ut)
Find the JTA TransactionManager through autodetection: checking whether the UserTransaction object implements the TransactionManager, and checking the fallback JNDI locations.
Object findTransactionSynchronizationRegistry(UserTransaction ut, TransactionManager tm)
Find the JTA 1.1 TransactionSynchronizationRegistry through autodetection: checking whether the UserTransaction object or TransactionManager object implements it, and checking Java EE 5's standard JNDI location.
UserTransaction findUserTransaction()
Find the JTA UserTransaction through a default JNDI lookup: "java:comp/UserTransaction".
void initTransactionSynchronizationRegistry()
Initialize the JTA 1.1 TransactionSynchronizationRegistry, if available.
void initUserTransactionAndTransactionManager()
Initialize the UserTransaction as well as the TransactionManager handle.
boolean isExistingTransaction(Object transaction)
Check if the given transaction object indicates an existing transaction (that is, a transaction which has already started).
TransactionManager lookupTransactionManager(String transactionManagerName)
Look up the JTA TransactionManager in JNDI via the configured name.
Object lookupTransactionSynchronizationRegistry(String registryName)
Look up the JTA 1.1 TransactionSynchronizationRegistry in JNDI via the configured name.
UserTransaction lookupUserTransaction(String userTransactionName)
Look up the JTA UserTransaction in JNDI via the configured name.
void registerAfterCompletionWithExistingTransaction(Object transaction, List<TransactionSynchronization> synchronizations)
Register the given list of transaction synchronizations with the existing transaction.
TransactionManager retrieveTransactionManager()
Allows subclasses to retrieve the JTA TransactionManager in a vendor-specific manner.
Object retrieveTransactionSynchronizationRegistry()
Allows subclasses to retrieve the JTA 1.1 TransactionSynchronizationRegistry in a vendor-specific manner.
UserTransaction retrieveUserTransaction()
Allows subclasses to retrieve the JTA UserTransaction in a vendor-specific manner.
boolean shouldCommitOnGlobalRollbackOnly()
This implementation returns "true": a JTA commit will properly handle transactions that have been marked rollback-only at a global level.
boolean useSavepointForNestedTransaction()
This implementation returns false to cause a further invocation of doBegin despite an already existing transaction.
[Expand]
Inherited Methods
From class org.springframework.transaction.support.AbstractPlatformTransactionManager
From class java.lang.Object
From interface org.springframework.beans.factory.InitializingBean
From interface org.springframework.transaction.PlatformTransactionManager
From interface org.springframework.transaction.jta.TransactionFactory

Constants

public static final String DEFAULT_TRANSACTION_SYNCHRONIZATION_REGISTRY_NAME

Standard Java EE 5 JNDI location for the JTA TransactionSynchronizationRegistry. Autodetected when available.

Constant Value: "java:comp/TransactionSynchronizationRegistry"

public static final String DEFAULT_USER_TRANSACTION_NAME

Default JNDI location for the JTA UserTransaction. Many Java EE servers also provide support for the JTA TransactionManager interface there.

Constant Value: "java:comp/UserTransaction"

Fields

public static final String[] FALLBACK_TRANSACTION_MANAGER_NAMES

Fallback JNDI locations for the JTA TransactionManager. Applied if the JTA UserTransaction does not implement the JTA TransactionManager interface, provided that the "autodetectTransactionManager" flag is "true".

Public Constructors

public JtaTransactionManager ()

Create a new JtaTransactionManager instance, to be configured as bean. Invoke afterPropertiesSet to activate the configuration.

public JtaTransactionManager (UserTransaction userTransaction)

Create a new JtaTransactionManager instance.

Parameters
userTransaction the JTA UserTransaction to use as direct reference

public JtaTransactionManager (UserTransaction userTransaction, TransactionManager transactionManager)

Create a new JtaTransactionManager instance.

Parameters
userTransaction the JTA UserTransaction to use as direct reference
transactionManager the JTA TransactionManager to use as direct reference

public JtaTransactionManager (TransactionManager transactionManager)

Create a new JtaTransactionManager instance.

Parameters
transactionManager the JTA TransactionManager to use as direct reference

Public Methods

public void afterPropertiesSet ()

Initialize the UserTransaction as well as the TransactionManager handle.

public Transaction createTransaction (String name, int timeout)

Create an active Transaction object based on the given name and timeout.

Parameters
name the transaction name (may be null)
timeout the transaction timeout (may be -1 for the default timeout)
Returns
  • the active Transaction object (never null)
Throws
NotSupportedException
SystemException

public Properties getJndiEnvironment ()

Return the JNDI environment to use for JNDI lookups.

public JndiTemplate getJndiTemplate ()

Return the JndiTemplate used for JNDI lookups.

public TransactionManager getTransactionManager ()

Return the JTA TransactionManager that this transaction manager uses.

public UserTransaction getUserTransaction ()

Return the JTA UserTransaction that this transaction manager uses.

public void setAllowCustomIsolationLevels (boolean allowCustomIsolationLevels)

Set whether to allow custom isolation levels to be specified.

Default is "false", throwing an exception if a non-default isolation level is specified for a transaction. Turn this flag on if affected resource adapters check the thread-bound transaction context and apply the specified isolation levels individually (e.g. through a IsolationLevelDataSourceRouter).

public void setAutodetectTransactionManager (boolean autodetectTransactionManager)

Set whether to autodetect a JTA UserTransaction object that implements the JTA TransactionManager interface too (i.e. the JNDI location for the TransactionManager is "java:comp/UserTransaction", same as for the UserTransaction). Also checks the fallback JNDI locations "java:comp/TransactionManager" and "java:/TransactionManager". Will proceed without TransactionManager if none found.

Default is "true", autodetecting the TransactionManager unless it has been specified explicitly. Can be turned off to deliberately ignore an available TransactionManager, for example when there are known issues with suspend/resume and any attempt to use REQUIRES_NEW or NOT_SUPPORTED should fail fast.

public void setAutodetectUserTransaction (boolean autodetectUserTransaction)

Set whether to autodetect the JTA UserTransaction at its default JNDI location "java:comp/UserTransaction", as specified by Java EE. Will proceed without UserTransaction if none found.

Default is "true", autodetecting the UserTransaction unless it has been specified explicitly. Turn this flag off to allow for JtaTransactionManager operating against the TransactionManager only, despite a default UserTransaction being available.

public void setCacheUserTransaction (boolean cacheUserTransaction)

Set whether to cache the JTA UserTransaction object fetched from JNDI.

Default is "true": UserTransaction lookup will only happen at startup, reusing the same UserTransaction handle for all transactions of all threads. This is the most efficient choice for all application servers that provide a shared UserTransaction object (the typical case).

Turn this flag off to enforce a fresh lookup of the UserTransaction for every transaction. This is only necessary for application servers that return a new UserTransaction for every transaction, keeping state tied to the UserTransaction object itself rather than the current thread.

public void setJndiEnvironment (Properties jndiEnvironment)

Set the JNDI environment to use for JNDI lookups. Creates a JndiTemplate with the given environment settings.

public void setJndiTemplate (JndiTemplate jndiTemplate)

Set the JndiTemplate to use for JNDI lookups. A default one is used if not set.

public void setTransactionManager (TransactionManager transactionManager)

Set the JTA TransactionManager to use as direct reference.

A TransactionManager is necessary for suspending and resuming transactions, as this not supported by the UserTransaction interface.

Note that the TransactionManager will be autodetected if the JTA UserTransaction object implements the JTA TransactionManager interface too, as well as autodetected at various well-known fallback JNDI locations.

public void setTransactionManagerName (String transactionManagerName)

Set the JNDI name of the JTA TransactionManager.

A TransactionManager is necessary for suspending and resuming transactions, as this not supported by the UserTransaction interface.

Note that the TransactionManager will be autodetected if the JTA UserTransaction object implements the JTA TransactionManager interface too, as well as autodetected at various well-known fallback JNDI locations.

public void setTransactionSynchronizationRegistryName (String transactionSynchronizationRegistryName)

Set the JNDI name of the JTA 1.1 TransactionSynchronizationRegistry.

Note that the TransactionSynchronizationRegistry will be autodetected at the Java EE 5 default location "java:comp/TransactionSynchronizationRegistry" if not specified explicitly.

public void setUserTransaction (UserTransaction userTransaction)

Set the JTA UserTransaction to use as direct reference.

Typically just used for local JTA setups; in a Java EE environment, the UserTransaction will always be fetched from JNDI.

public void setUserTransactionName (String userTransactionName)

Set the JNDI name of the JTA UserTransaction.

Note that the UserTransaction will be autodetected at the Java EE default location "java:comp/UserTransaction" if not specified explicitly.

public boolean supportsResourceAdapterManagedTransactions ()

Determine whether the underlying transaction manager supports XA transactions managed by a resource adapter (i.e. without explicit XA resource enlistment).

Typically false. Checked by AbstractMessageEndpointFactory in order to differentiate between invalid configuration and valid ResourceAdapter-managed transactions.

Protected Methods

protected void applyIsolationLevel (JtaTransactionObject txObject, int isolationLevel)

Apply the given transaction isolation level. The default implementation will throw an exception for any level other than ISOLATION_DEFAULT.

To be overridden in subclasses for specific JTA implementations, as alternative to overriding the full doJtaBegin(JtaTransactionObject, TransactionDefinition) method.

Parameters
txObject the JtaTransactionObject containing the UserTransaction
isolationLevel isolation level taken from transaction definition
Throws
InvalidIsolationLevelException if the given isolation level cannot be applied
SystemException if thrown by the JTA implementation

protected void applyTimeout (JtaTransactionObject txObject, int timeout)

Apply the given transaction timeout. The default implementation will call UserTransaction.setTransactionTimeout for a non-default timeout value.

Parameters
txObject the JtaTransactionObject containing the UserTransaction
timeout timeout value taken from transaction definition
Throws
SystemException if thrown by the JTA implementation

protected UserTransaction buildUserTransaction (TransactionManager transactionManager)

Build a UserTransaction handle based on the given TransactionManager.

Parameters
transactionManager the TransactionManager
Returns
  • a corresponding UserTransaction handle

protected void checkUserTransactionAndTransactionManager ()

Check the UserTransaction as well as the TransactionManager handle, assuming standard JTA requirements.

Throws
IllegalStateException if no sufficient handles are available

protected void doBegin (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 without savepoint: If useSavepointForNestedTransaction() returns "false", 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
transaction transaction object returned by doGetTransaction
definition TransactionDefinition instance, describing propagation behavior, isolation level, read-only flag, timeout, and transaction name

protected void doCommit (DefaultTransactionStatus 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
status the status representation of the transaction

protected JtaTransactionObject doGetJtaTransaction (UserTransaction ut)

Get a JTA transaction object for the given current UserTransaction.

Subclasses can override this to provide a JtaTransactionObject subclass, for example holding some additional JTA handle needed.

Parameters
ut the UserTransaction handle to use for the current transaction
Returns
  • the JtaTransactionObject holding the UserTransaction

protected Object doGetTransaction ()

This implementation returns a JtaTransactionObject instance for the JTA UserTransaction.

The UserTransaction object will either be looked up freshly for the current transaction, or the cached one looked up at startup will be used. The latter is the default: Most application servers use a shared singleton UserTransaction that can be cached. Turn off the "cacheUserTransaction" flag to enforce a fresh lookup for every transaction.

Returns
  • the current transaction object

protected void doJtaBegin (JtaTransactionObject txObject, TransactionDefinition definition)

Perform a JTA begin on the JTA UserTransaction or TransactionManager.

This implementation only supports standard JTA functionality: that is, no per-transaction isolation levels and no transaction names. Can be overridden in subclasses, for specific JTA implementations.

Calls applyIsolationLevel and applyTimeout before invoking the UserTransaction's begin method.

Parameters
txObject the JtaTransactionObject containing the UserTransaction
definition TransactionDefinition instance, describing propagation behavior, isolation level, read-only flag, timeout, and transaction name
Throws
NotSupportedException if thrown by JTA methods
SystemException if thrown by JTA methods

protected void doJtaResume (JtaTransactionObject txObject, Object suspendedTransaction)

Perform a JTA resume on the JTA TransactionManager.

Can be overridden in subclasses, for specific JTA implementations.

Parameters
txObject the JtaTransactionObject containing the UserTransaction
suspendedTransaction the suspended JTA Transaction object
Throws
InvalidTransactionException if thrown by JTA methods
SystemException if thrown by JTA methods

protected Object doJtaSuspend (JtaTransactionObject txObject)

Perform a JTA suspend on the JTA TransactionManager.

Can be overridden in subclasses, for specific JTA implementations.

Parameters
txObject the JtaTransactionObject containing the UserTransaction
Returns
  • the suspended JTA Transaction object
Throws
SystemException if thrown by JTA methods

protected void doRegisterAfterCompletionWithJtaTransaction (JtaTransactionObject txObject, List<TransactionSynchronization> synchronizations)

Register a JTA synchronization on the JTA TransactionManager, for calling afterCompletion on the given Spring TransactionSynchronizations.

The default implementation registers the synchronizations on the JTA 1.1 TransactionSynchronizationRegistry, if available, or on the JTA TransactionManager's current Transaction - again, if available. If none of the two is available, a warning will be logged.

Can be overridden in subclasses, for specific JTA implementations.

Parameters
txObject the current transaction object
synchronizations List of TransactionSynchronization objects
Throws
RollbackException if thrown by JTA methods
SystemException if thrown by JTA methods

protected void doResume (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
transaction transaction object returned by doGetTransaction
suspendedResources the object that holds suspended resources, as returned by doSuspend

protected void doRollback (DefaultTransactionStatus 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
status the status representation of the transaction

protected void doSetRollbackOnly (DefaultTransactionStatus 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
status the status representation of the transaction

protected Object doSuspend (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
transaction transaction object returned by doGetTransaction
Returns
  • an object that holds suspended resources (will be kept unexamined for passing it into doResume)

protected TransactionManager findTransactionManager (UserTransaction ut)

Find the JTA TransactionManager through autodetection: checking whether the UserTransaction object implements the TransactionManager, and checking the fallback JNDI locations.

Parameters
ut the JTA UserTransaction object
Returns
  • the JTA TransactionManager reference, or null if not found

protected Object findTransactionSynchronizationRegistry (UserTransaction ut, TransactionManager tm)

Find the JTA 1.1 TransactionSynchronizationRegistry through autodetection: checking whether the UserTransaction object or TransactionManager object implements it, and checking Java EE 5's standard JNDI location.

The default implementation simply returns null.

Parameters
ut the JTA UserTransaction object
tm the JTA TransactionManager object
Returns
  • the JTA TransactionSynchronizationRegistry handle to use, or null if none found
Throws
TransactionSystemException in case of errors

protected UserTransaction findUserTransaction ()

Find the JTA UserTransaction through a default JNDI lookup: "java:comp/UserTransaction".

Returns
  • the JTA UserTransaction reference, or null if not found

protected void initTransactionSynchronizationRegistry ()

Initialize the JTA 1.1 TransactionSynchronizationRegistry, if available.

To be called after initUserTransactionAndTransactionManager(), since it may check the UserTransaction and TransactionManager handles.

Throws
TransactionSystemException if initialization failed

protected void initUserTransactionAndTransactionManager ()

Initialize the UserTransaction as well as the TransactionManager handle.

Throws
TransactionSystemException if initialization failed

protected boolean isExistingTransaction (Object transaction)

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 transaction object returned by doGetTransaction
Returns
  • if there is an existing transaction

protected TransactionManager lookupTransactionManager (String transactionManagerName)

Look up the JTA TransactionManager in JNDI via the configured name.

Called by afterPropertiesSet if no direct TransactionManager reference was set. Can be overridden in subclasses to provide a different TransactionManager object.

Parameters
transactionManagerName the JNDI name of the TransactionManager
Returns
  • the UserTransaction object
Throws
TransactionSystemException if the JNDI lookup failed

protected Object lookupTransactionSynchronizationRegistry (String registryName)

Look up the JTA 1.1 TransactionSynchronizationRegistry in JNDI via the configured name.

Can be overridden in subclasses to provide a different TransactionManager object.

Parameters
registryName the JNDI name of the TransactionSynchronizationRegistry
Returns
  • the TransactionSynchronizationRegistry object
Throws
TransactionSystemException if the JNDI lookup failed

protected UserTransaction lookupUserTransaction (String userTransactionName)

Look up the JTA UserTransaction in JNDI via the configured name.

Called by afterPropertiesSet if no direct UserTransaction reference was set. Can be overridden in subclasses to provide a different UserTransaction object.

Parameters
userTransactionName the JNDI name of the UserTransaction
Returns
  • the UserTransaction object
Throws
TransactionSystemException if the JNDI lookup failed

protected void registerAfterCompletionWithExistingTransaction (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
transaction transaction object returned by doGetTransaction
synchronizations List of TransactionSynchronization objects

protected TransactionManager retrieveTransactionManager ()

Allows subclasses to retrieve the JTA TransactionManager in a vendor-specific manner. Only called if no "transactionManager" or "transactionManagerName" specified.

The default implementation simply returns null.

Returns
  • the JTA TransactionManager handle to use, or null if none found
Throws
TransactionSystemException in case of errors

protected Object retrieveTransactionSynchronizationRegistry ()

Allows subclasses to retrieve the JTA 1.1 TransactionSynchronizationRegistry in a vendor-specific manner.

The default implementation simply returns null.

Returns
  • the JTA TransactionSynchronizationRegistry handle to use, or null if none found
Throws
TransactionSystemException in case of errors

protected UserTransaction retrieveUserTransaction ()

Allows subclasses to retrieve the JTA UserTransaction in a vendor-specific manner. Only called if no "userTransaction" or "userTransactionName" specified.

The default implementation simply returns null.

Returns
  • the JTA UserTransaction handle to use, or null if none found
Throws
TransactionSystemException in case of errors

protected boolean shouldCommitOnGlobalRollbackOnly ()

This implementation returns "true": a JTA commit will properly handle transactions that have been marked rollback-only at a global level.

protected boolean useSavepointForNestedTransaction ()

This implementation returns false to cause a further invocation of doBegin despite an already existing transaction.

JTA implementations might support nested transactions via further UserTransaction.begin() invocations, but never support savepoints.