Package | Description |
---|---|
org.springframework.jca.cci.connection |
Provides a utility class for easy ConnectionFactory access,
a PlatformTransactionManager for local CCI transactions,
and various simple ConnectionFactory proxies/adapters.
|
org.springframework.jdbc.datasource |
Provides a utility class for easy DataSource access,
a PlatformTransactionManager for a single DataSource,
and various simple DataSource implementations.
|
org.springframework.jms.config |
Support package for declarative messaging configuration,
with Java configuration and XML schema support.
|
org.springframework.jms.connection |
Provides a PlatformTransactionManager implementation for a single
JMS ConnectionFactory, and a SingleConnectionFactory adapter.
|
org.springframework.jms.listener |
This package contains the base message listener container facility.
|
org.springframework.orm.hibernate5 |
Package providing integration of
Hibernate 5.x
with Spring concepts.
|
org.springframework.orm.jpa |
Package providing integration of JPA (Java Persistence API) with Spring concepts.
|
org.springframework.scheduling.quartz |
Support classes for the open source scheduler
Quartz,
allowing to set up Quartz Schedulers, JobDetails and
Triggers as beans in a Spring context.
|
org.springframework.test.context.transaction |
Transactional support classes for the Spring TestContext Framework.
|
org.springframework.transaction.annotation |
Spring's support for annotation-based transaction demarcation.
|
org.springframework.transaction.interceptor |
AOP-based solution for declarative transaction demarcation.
|
org.springframework.transaction.jta |
Transaction SPI implementation for JTA.
|
org.springframework.transaction.support |
Support classes for the org.springframework.transaction package.
|
Modifier and Type | Class and Description |
---|---|
class |
CciLocalTransactionManager
PlatformTransactionManager implementation
that manages local transactions for a single CCI ConnectionFactory. |
Modifier and Type | Class and Description |
---|---|
class |
DataSourceTransactionManager
PlatformTransactionManager
implementation for a single JDBC DataSource . |
Modifier and Type | Method and Description |
---|---|
void |
DefaultJmsListenerContainerFactory.setTransactionManager(PlatformTransactionManager transactionManager) |
Modifier and Type | Class and Description |
---|---|
class |
JmsTransactionManager
PlatformTransactionManager implementation
for a single JMS ConnectionFactory . |
Modifier and Type | Method and Description |
---|---|
protected PlatformTransactionManager |
AbstractPollingMessageListenerContainer.getTransactionManager()
Return the Spring PlatformTransactionManager to use for transactional
wrapping of message reception plus listener execution.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractPollingMessageListenerContainer.setTransactionManager(PlatformTransactionManager transactionManager)
Specify the Spring
PlatformTransactionManager
to use for transactional wrapping of message reception plus listener execution. |
Modifier and Type | Class and Description |
---|---|
class |
HibernateTransactionManager
PlatformTransactionManager
implementation for a single Hibernate SessionFactory . |
Modifier and Type | Class and Description |
---|---|
class |
JpaTransactionManager
PlatformTransactionManager implementation
for a single JPA EntityManagerFactory . |
Modifier and Type | Method and Description |
---|---|
void |
SchedulerAccessor.setTransactionManager(PlatformTransactionManager transactionManager)
Set the transaction manager to be used for registering jobs and triggers
that are defined by this SchedulerFactoryBean.
|
Modifier and Type | Method and Description |
---|---|
protected PlatformTransactionManager |
TransactionalTestExecutionListener.getTransactionManager(TestContext testContext)
Get the transaction manager
to use for the supplied test context.
|
protected PlatformTransactionManager |
TransactionalTestExecutionListener.getTransactionManager(TestContext testContext,
java.lang.String qualifier)
|
static PlatformTransactionManager |
TestContextTransactionUtils.retrieveTransactionManager(TestContext testContext,
java.lang.String name)
Retrieve the transaction manager
to use for the supplied test context.
|
Modifier and Type | Field and Description |
---|---|
protected PlatformTransactionManager |
AbstractTransactionManagementConfiguration.txManager
Default transaction manager, as configured through a
TransactionManagementConfigurer . |
Modifier and Type | Method and Description |
---|---|
PlatformTransactionManager |
TransactionManagementConfigurer.annotationDrivenTransactionManager()
Return the default transaction manager bean to use for annotation-driven database
transaction management, i.e.
|
Modifier and Type | Method and Description |
---|---|
protected PlatformTransactionManager |
TransactionAspectSupport.determineTransactionManager(TransactionAttribute txAttr)
Determine the specific transaction manager to use for the given transaction.
|
PlatformTransactionManager |
TransactionAspectSupport.getTransactionManager()
Return the default transaction manager, or
null if unknown. |
PlatformTransactionManager |
TransactionAspectSupport.TransactionInfo.getTransactionManager() |
Modifier and Type | Method and Description |
---|---|
protected TransactionAspectSupport.TransactionInfo |
TransactionAspectSupport.createTransactionIfNecessary(PlatformTransactionManager tm,
TransactionAttribute txAttr,
java.lang.String joinpointIdentification)
Create a transaction if necessary based on the given TransactionAttribute.
|
protected TransactionAspectSupport.TransactionInfo |
TransactionAspectSupport.prepareTransactionInfo(PlatformTransactionManager tm,
TransactionAttribute txAttr,
java.lang.String joinpointIdentification,
TransactionStatus status)
Prepare a TransactionInfo for the given attribute and status object.
|
void |
TransactionAspectSupport.setTransactionManager(PlatformTransactionManager transactionManager)
Specify the default transaction manager to use to drive transactions.
|
void |
TransactionProxyFactoryBean.setTransactionManager(PlatformTransactionManager transactionManager)
Set the default transaction manager.
|
Constructor and Description |
---|
TransactionInfo(PlatformTransactionManager transactionManager,
TransactionAttribute transactionAttribute,
java.lang.String joinpointIdentification) |
TransactionInterceptor(PlatformTransactionManager ptm,
java.util.Properties attributes)
Create a new TransactionInterceptor.
|
TransactionInterceptor(PlatformTransactionManager ptm,
TransactionAttributeSource tas)
Create a new TransactionInterceptor.
|
Modifier and Type | Class and Description |
---|---|
class |
JtaTransactionManager
PlatformTransactionManager implementation
for JTA, delegating to a backend JTA provider. |
class |
WebLogicJtaTransactionManager
Special
JtaTransactionManager variant for BEA WebLogic (9.0 and higher). |
class |
WebSphereUowTransactionManager
WebSphere-specific PlatformTransactionManager implementation that delegates
to a
UOWManager instance, obtained from WebSphere's
JNDI environment. |
Modifier and Type | Interface and Description |
---|---|
interface |
CallbackPreferringPlatformTransactionManager
Extension of the
PlatformTransactionManager
interface, exposing a method for executing a given callback within a transaction. |
interface |
ResourceTransactionManager
Extension of the
PlatformTransactionManager
interface, indicating a native resource transaction manager, operating on a single
target resource. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractPlatformTransactionManager
Abstract base class that implements Spring's standard transaction workflow,
serving as basis for concrete platform transaction managers like
JtaTransactionManager . |
Modifier and Type | Method and Description |
---|---|
PlatformTransactionManager |
TransactionTemplate.getTransactionManager()
Return the transaction management strategy to be used.
|
Modifier and Type | Method and Description |
---|---|
void |
TransactionTemplate.setTransactionManager(PlatformTransactionManager transactionManager)
Set the transaction management strategy to be used.
|
Constructor and Description |
---|
TransactionTemplate(PlatformTransactionManager transactionManager)
Construct a new TransactionTemplate using the given transaction manager.
|
TransactionTemplate(PlatformTransactionManager transactionManager,
TransactionDefinition transactionDefinition)
Construct a new TransactionTemplate using the given transaction manager,
taking its default settings from the given transaction definition.
|