Package | Description |
---|---|
org.springframework.transaction.config |
Support package for declarative transaction configuration,
with XML schema being the primary configuration format.
|
org.springframework.transaction.jta |
Transaction SPI implementation for JTA.
|
Modifier and Type | Method and Description |
---|---|
void |
JtaTransactionManagerFactoryBean.afterPropertiesSet() |
Modifier and Type | Method and Description |
---|---|
void |
WebLogicJtaTransactionManager.afterPropertiesSet() |
void |
JtaTransactionManager.afterPropertiesSet()
Initialize the UserTransaction as well as the TransactionManager handle.
|
void |
WebSphereUowTransactionManager.afterPropertiesSet() |
protected TransactionSynchronizationRegistry |
JtaTransactionManager.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.
|
protected void |
JtaTransactionManager.initUserTransactionAndTransactionManager()
Initialize the UserTransaction as well as the TransactionManager handle.
|
protected com.ibm.wsspi.uow.UOWManager |
WebSphereUowTransactionManager.lookupDefaultUowManager()
Obtain the WebSphere UOWManager from the default JNDI location
"java:comp/websphere/UOWManager".
|
protected TransactionManager |
JtaTransactionManager.lookupTransactionManager(String transactionManagerName)
Look up the JTA TransactionManager in JNDI via the configured name.
|
protected TransactionSynchronizationRegistry |
JtaTransactionManager.lookupTransactionSynchronizationRegistry(String registryName)
Look up the JTA 1.1 TransactionSynchronizationRegistry in JNDI via the configured name.
|
protected com.ibm.wsspi.uow.UOWManager |
WebSphereUowTransactionManager.lookupUowManager(String uowManagerName)
Look up the WebSphere UOWManager in JNDI via the configured name.
|
protected UserTransaction |
JtaTransactionManager.lookupUserTransaction(String userTransactionName)
Look up the JTA UserTransaction in JNDI via the configured name.
|
protected TransactionManager |
WebLogicJtaTransactionManager.retrieveTransactionManager() |
protected TransactionManager |
JtaTransactionManager.retrieveTransactionManager()
Allows subclasses to retrieve the JTA TransactionManager in a vendor-specific manner.
|
protected TransactionSynchronizationRegistry |
JtaTransactionManager.retrieveTransactionSynchronizationRegistry()
Allows subclasses to retrieve the JTA 1.1 TransactionSynchronizationRegistry
in a vendor-specific manner.
|
protected UserTransaction |
WebLogicJtaTransactionManager.retrieveUserTransaction() |
protected UserTransaction |
JtaTransactionManager.retrieveUserTransaction()
Allows subclasses to retrieve the JTA UserTransaction in a vendor-specific manner.
|