Class WebLogicJtaTransactionManager
- java.lang.Object
- org.springframework.transaction.support.AbstractPlatformTransactionManager
- org.springframework.transaction.jta.JtaTransactionManager
- org.springframework.transaction.jta.WebLogicJtaTransactionManager
- All Implemented Interfaces:
Serializable,InitializingBean,TransactionFactory,PlatformTransactionManager,TransactionManager
public class WebLogicJtaTransactionManager extends JtaTransactionManager
SpecialJtaTransactionManagervariant for BEA WebLogic (9.0 and higher). Supports the full power of Spring's transaction definitions on WebLogic's transaction coordinator, beyond standard JTA: transaction names, per-transaction isolation levels, and proper resuming of transactions in all cases.Uses WebLogic's special
begin(name)method to start a JTA transaction, in order to make Spring-driven transactions visible in WebLogic's transaction monitor. In case of Spring's declarative transactions, the exposed name will (by default) be the fully-qualified class name + "." + method name.Supports a per-transaction isolation level through WebLogic's corresponding JTA transaction property "ISOLATION LEVEL". This will apply the specified isolation level (e.g. ISOLATION_SERIALIZABLE) to all JDBC Connections that participate in the given transaction.
Invokes WebLogic's special
forceResumemethod if standard JTA resume failed, to also resume if the target transaction was marked rollback-only. If you're not relying on this feature of transaction suspension in the first place, Spring's standard JtaTransactionManager will behave properly too.By default, the JTA UserTransaction and TransactionManager handles are fetched directly from WebLogic's
TransactionHelper. This can be overridden by specifying "userTransaction"/"userTransactionName" and "transactionManager"/"transactionManagerName", passing in existing handles or specifying corresponding JNDI locations to look up.NOTE: This JtaTransactionManager is intended to refine specific transaction demarcation behavior on Spring's side. It will happily co-exist with independently configured WebLogic transaction strategies in your persistence provider, with no need to specifically connect those setups in any way.
- Since:
- 1.1
- Author:
- Juergen Hoeller
- See Also:
TransactionDefinition.getName(),TransactionDefinition.getIsolationLevel(),weblogic.transaction.UserTransaction#begin(String),weblogic.transaction.Transaction#setProperty,weblogic.transaction.TransactionManager#forceResume,weblogic.transaction.TransactionHelper, Serialized Form
Nested Class Summary
Nested classes/interfaces inherited from class org.springframework.transaction.support.AbstractPlatformTransactionManager
AbstractPlatformTransactionManager.SuspendedResourcesHolder
Field Summary
Fields inherited from class org.springframework.transaction.jta.JtaTransactionManager
DEFAULT_TRANSACTION_SYNCHRONIZATION_REGISTRY_NAME, DEFAULT_USER_TRANSACTION_NAME, FALLBACK_TRANSACTION_MANAGER_NAMES
Fields inherited from class org.springframework.transaction.support.AbstractPlatformTransactionManager
logger, SYNCHRONIZATION_ALWAYS, SYNCHRONIZATION_NEVER, SYNCHRONIZATION_ON_ACTUAL_TRANSACTION
Constructor Summary
Constructors Constructor Description WebLogicJtaTransactionManager()
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterPropertiesSet()Initialize the UserTransaction as well as the TransactionManager handle.TransactioncreateTransaction(String name, int timeout)Create an active Transaction object based on the given name and timeout.protected voiddoJtaBegin(JtaTransactionObject txObject, TransactionDefinition definition)Perform a JTA begin on the JTA UserTransaction or TransactionManager.protected voiddoJtaResume(JtaTransactionObject txObject, Object suspendedTransaction)Perform a JTA resume on the JTA TransactionManager.protected TransactionManagerretrieveTransactionManager()Allows subclasses to retrieve the JTA TransactionManager in a vendor-specific manner.protected UserTransactionretrieveUserTransaction()Allows subclasses to retrieve the JTA UserTransaction in a vendor-specific manner.Methods inherited from class org.springframework.transaction.jta.JtaTransactionManager
applyIsolationLevel, applyTimeout, buildUserTransaction, checkUserTransactionAndTransactionManager, doBegin, doCleanupAfterCompletion, doCommit, doGetJtaTransaction, doGetTransaction, doJtaSuspend, doRegisterAfterCompletionWithJtaTransaction, doResume, doRollback, doSetRollbackOnly, doSuspend, findTransactionManager, findTransactionSynchronizationRegistry, findUserTransaction, getJndiEnvironment, getJndiTemplate, getTransactionManager, getTransactionSynchronizationRegistry, getUserTransaction, initTransactionSynchronizationRegistry, initUserTransactionAndTransactionManager, isExistingTransaction, lookupTransactionManager, lookupTransactionSynchronizationRegistry, lookupUserTransaction, registerAfterCompletionWithExistingTransaction, retrieveTransactionSynchronizationRegistry, setAllowCustomIsolationLevels, setAutodetectTransactionManager, setAutodetectTransactionSynchronizationRegistry, setAutodetectUserTransaction, setCacheUserTransaction, setJndiEnvironment, setJndiTemplate, setTransactionManager, setTransactionManagerName, setTransactionSynchronizationRegistry, setTransactionSynchronizationRegistryName, setUserTransaction, setUserTransactionName, shouldCommitOnGlobalRollbackOnly, supportsResourceAdapterManagedTransactions, useSavepointForNestedTransaction
Methods inherited from class org.springframework.transaction.support.AbstractPlatformTransactionManager
commit, determineTimeout, getDefaultTimeout, getTransaction, getTransactionSynchronization, invokeAfterCompletion, isFailEarlyOnGlobalRollbackOnly, isGlobalRollbackOnParticipationFailure, isNestedTransactionAllowed, isRollbackOnCommitFailure, isValidateExistingTransaction, newTransactionStatus, prepareForCommit, prepareSynchronization, prepareTransactionStatus, resume, rollback, setDefaultTimeout, setFailEarlyOnGlobalRollbackOnly, setGlobalRollbackOnParticipationFailure, setNestedTransactionAllowed, setRollbackOnCommitFailure, setTransactionSynchronization, setTransactionSynchronizationName, setValidateExistingTransaction, suspend, triggerBeforeCommit, triggerBeforeCompletion
Constructor Detail
WebLogicJtaTransactionManager
public WebLogicJtaTransactionManager()
Method Detail
afterPropertiesSet
public void afterPropertiesSet() throws TransactionSystemException
Description copied from class:JtaTransactionManagerInitialize the UserTransaction as well as the TransactionManager handle.- Specified by:
afterPropertiesSetin interfaceInitializingBean- Overrides:
afterPropertiesSetin classJtaTransactionManager- Throws:
TransactionSystemException- See Also:
JtaTransactionManager.initUserTransactionAndTransactionManager()
retrieveUserTransaction
@Nullable protected UserTransaction retrieveUserTransaction() throws TransactionSystemException
Description copied from class:JtaTransactionManagerAllows 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.- Overrides:
retrieveUserTransactionin classJtaTransactionManager- Returns:
- the JTA UserTransaction handle to use, or
nullif none found - Throws:
TransactionSystemException- in case of errors- See Also:
JtaTransactionManager.setUserTransaction(javax.transaction.UserTransaction),JtaTransactionManager.setUserTransactionName(java.lang.String)
retrieveTransactionManager
@Nullable protected TransactionManager retrieveTransactionManager() throws TransactionSystemException
Description copied from class:JtaTransactionManagerAllows 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.- Overrides:
retrieveTransactionManagerin classJtaTransactionManager- Returns:
- the JTA TransactionManager handle to use, or
nullif none found - Throws:
TransactionSystemException- in case of errors- See Also:
JtaTransactionManager.setTransactionManager(javax.transaction.TransactionManager),JtaTransactionManager.setTransactionManagerName(java.lang.String)
doJtaBegin
protected void doJtaBegin(JtaTransactionObject txObject, TransactionDefinition definition) throws NotSupportedException, SystemException
Description copied from class:JtaTransactionManagerPerform 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
applyIsolationLevelandapplyTimeoutbefore invoking the UserTransaction'sbeginmethod.- Overrides:
doJtaBeginin classJtaTransactionManager- Parameters:
txObject- the JtaTransactionObject containing the UserTransactiondefinition- the TransactionDefinition instance, describing propagation behavior, isolation level, read-only flag, timeout, and transaction name- Throws:
NotSupportedException- if thrown by JTA methodsSystemException- if thrown by JTA methods- See Also:
JtaTransactionManager.getUserTransaction(),JtaTransactionManager.getTransactionManager(),JtaTransactionManager.applyIsolationLevel(org.springframework.transaction.jta.JtaTransactionObject, int),JtaTransactionManager.applyTimeout(org.springframework.transaction.jta.JtaTransactionObject, int),JtaTransactionObject.getUserTransaction(),UserTransaction.setTransactionTimeout(int),UserTransaction.begin()
doJtaResume
protected void doJtaResume(@Nullable JtaTransactionObject txObject, Object suspendedTransaction) throws InvalidTransactionException, SystemException
Description copied from class:JtaTransactionManagerPerform a JTA resume on the JTA TransactionManager.Can be overridden in subclasses, for specific JTA implementations.
- Overrides:
doJtaResumein classJtaTransactionManager- Parameters:
txObject- the JtaTransactionObject containing the UserTransactionsuspendedTransaction- the suspended JTA Transaction object- Throws:
InvalidTransactionException- if thrown by JTA methodsSystemException- if thrown by JTA methods- See Also:
JtaTransactionManager.getTransactionManager(),TransactionManager.resume(javax.transaction.Transaction)
createTransaction
public Transaction createTransaction(@Nullable String name, int timeout) throws NotSupportedException, SystemException
Description copied from interface:TransactionFactoryCreate an active Transaction object based on the given name and timeout.- Specified by:
createTransactionin interfaceTransactionFactory- Overrides:
createTransactionin classJtaTransactionManager- Parameters:
name- the transaction name (may benull)timeout- the transaction timeout (may be -1 for the default timeout)- Returns:
- the active Transaction object (never
null) - Throws:
NotSupportedException- if the transaction manager does not support a transaction of the specified typeSystemException- if the transaction manager failed to create the transaction