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.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.hibernate3 |
Package providing integration of
Hibernate 3.x
with Spring concepts.
|
org.springframework.orm.jdo |
Package providing integration of JDO (Java Date Objects) 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.transaction.annotation |
JDK 1.5+ annotation for 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 | Class and Description |
---|---|
class |
JmsTransactionManager
PlatformTransactionManager implementation
for a single JMS ConnectionFactory . |
class |
JmsTransactionManager102
Deprecated.
as of Spring 3.0, in favor of the JMS 1.1 based
JmsTransactionManager |
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 |
JdoTransactionManager
PlatformTransactionManager implementation
for a single JDO PersistenceManagerFactory . |
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 | Field and Description |
---|---|
protected PlatformTransactionManager |
AbstractTransactionManagementConfiguration.txManager |
Modifier and Type | Method and Description |
---|---|
PlatformTransactionManager |
TransactionManagementConfigurer.annotationDrivenTransactionManager()
Return the 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 transaction manager, if specified.
|
PlatformTransactionManager |
TransactionAspectSupport.TransactionInfo.getTransactionManager() |
static PlatformTransactionManager |
TransactionAspectUtils.getTransactionManager(BeanFactory beanFactory,
String qualifier)
Obtain a PlatformTransactionManager from the given BeanFactory,
matching the given qualifier.
|
static PlatformTransactionManager |
TransactionAspectUtils.getTransactionManager(ConfigurableListableBeanFactory bf,
String qualifier)
Obtain a PlatformTransactionManager from the given BeanFactory,
matching the given qualifier.
|
Modifier and Type | Method and Description |
---|---|
protected TransactionAspectSupport.TransactionInfo |
TransactionAspectSupport.createTransactionIfNecessary(PlatformTransactionManager tm,
TransactionAttribute txAttr,
String joinpointIdentification)
Create a transaction if necessary based on the given TransactionAttribute.
|
protected TransactionAspectSupport.TransactionInfo |
TransactionAspectSupport.prepareTransactionInfo(PlatformTransactionManager tm,
TransactionAttribute txAttr,
String joinpointIdentification,
TransactionStatus status)
Prepare a TransactionInfo for the given attribute and status object.
|
void |
TransactionProxyFactoryBean.setTransactionManager(PlatformTransactionManager transactionManager)
Set the transaction manager.
|
void |
TransactionAspectSupport.setTransactionManager(PlatformTransactionManager transactionManager)
Specify the target transaction manager.
|
Constructor and Description |
---|
TransactionAspectSupport.TransactionInfo(PlatformTransactionManager transactionManager,
TransactionAttribute transactionAttribute,
String joinpointIdentification) |
TransactionInterceptor(PlatformTransactionManager ptm,
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 |
OC4JJtaTransactionManager
Special
JtaTransactionManager variant for Oracle OC4J (10.1.3 and higher). |
class |
WebLogicJtaTransactionManager
Special
JtaTransactionManager variant for BEA WebLogic (9.0 and higher). |
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.
|
Copyright © 2013. All Rights Reserved.