Uses of Interface
org.springframework.transaction.PlatformTransactionManager
Packages that use PlatformTransactionManager 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.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.Uses of PlatformTransactionManager in org.springframework.jca.cci.connection
Classes in org.springframework.jca.cci.connection that implement PlatformTransactionManager Modifier and Type Class Description classCciLocalTransactionManagerPlatformTransactionManagerimplementation that manages local transactions for a single CCI ConnectionFactory.Uses of PlatformTransactionManager in org.springframework.jdbc.datasource
Classes in org.springframework.jdbc.datasource that implement PlatformTransactionManager Modifier and Type Class Description classDataSourceTransactionManagerPlatformTransactionManagerimplementation for a single JDBCDataSource.Uses of PlatformTransactionManager in org.springframework.jms.config
Methods in org.springframework.jms.config with parameters of type PlatformTransactionManager Modifier and Type Method Description voidDefaultJmsListenerContainerFactory. setTransactionManager(PlatformTransactionManager transactionManager)Uses of PlatformTransactionManager in org.springframework.jms.connection
Classes in org.springframework.jms.connection that implement PlatformTransactionManager Modifier and Type Class Description classJmsTransactionManagerPlatformTransactionManagerimplementation for a single JMSConnectionFactory.Uses of PlatformTransactionManager in org.springframework.jms.listener
Methods in org.springframework.jms.listener that return PlatformTransactionManager Modifier and Type Method Description protected PlatformTransactionManagerAbstractPollingMessageListenerContainer. getTransactionManager()Return the Spring PlatformTransactionManager to use for transactional wrapping of message reception plus listener execution.Methods in org.springframework.jms.listener with parameters of type PlatformTransactionManager Modifier and Type Method Description voidAbstractPollingMessageListenerContainer. setTransactionManager(PlatformTransactionManager transactionManager)Specify the SpringPlatformTransactionManagerto use for transactional wrapping of message reception plus listener execution.Uses of PlatformTransactionManager in org.springframework.orm.hibernate5
Classes in org.springframework.orm.hibernate5 that implement PlatformTransactionManager Modifier and Type Class Description classHibernateTransactionManagerPlatformTransactionManagerimplementation for a single HibernateSessionFactory.Uses of PlatformTransactionManager in org.springframework.orm.jpa
Classes in org.springframework.orm.jpa that implement PlatformTransactionManager Modifier and Type Class Description classJpaTransactionManagerPlatformTransactionManagerimplementation for a single JPAEntityManagerFactory.Uses of PlatformTransactionManager in org.springframework.scheduling.quartz
Methods in org.springframework.scheduling.quartz with parameters of type PlatformTransactionManager Modifier and Type Method Description voidSchedulerAccessor. setTransactionManager(PlatformTransactionManager transactionManager)Set the transaction manager to be used for registering jobs and triggers that are defined by this SchedulerFactoryBean.Uses of PlatformTransactionManager in org.springframework.test.context.transaction
Methods in org.springframework.test.context.transaction that return PlatformTransactionManager Modifier and Type Method Description protected PlatformTransactionManagerTransactionalTestExecutionListener. getTransactionManager(TestContext testContext)Get the transaction manager to use for the supplied test context.protected PlatformTransactionManagerTransactionalTestExecutionListener. getTransactionManager(TestContext testContext, String qualifier)static PlatformTransactionManagerTestContextTransactionUtils. retrieveTransactionManager(TestContext testContext, String name)Retrieve the transaction manager to use for the supplied test context.Uses of PlatformTransactionManager in org.springframework.transaction.interceptor
Methods in org.springframework.transaction.interceptor that return PlatformTransactionManager Modifier and Type Method Description PlatformTransactionManagerTransactionAspectSupport.TransactionInfo. getTransactionManager()Methods in org.springframework.transaction.interceptor with parameters of type PlatformTransactionManager Modifier and Type Method Description protected TransactionAspectSupport.TransactionInfoTransactionAspectSupport. createTransactionIfNecessary(PlatformTransactionManager tm, TransactionAttribute txAttr, String joinpointIdentification)Create a transaction if necessary based on the given TransactionAttribute.protected TransactionAspectSupport.TransactionInfoTransactionAspectSupport. prepareTransactionInfo(PlatformTransactionManager tm, TransactionAttribute txAttr, String joinpointIdentification, TransactionStatus status)Prepare a TransactionInfo for the given attribute and status object.voidTransactionProxyFactoryBean. setTransactionManager(PlatformTransactionManager transactionManager)Set the default transaction manager.Constructors in org.springframework.transaction.interceptor with parameters of type PlatformTransactionManager Constructor Description TransactionInfo(PlatformTransactionManager transactionManager, TransactionAttribute transactionAttribute, String joinpointIdentification)TransactionInterceptor(PlatformTransactionManager ptm, Properties attributes)Deprecated.as of 5.2.5, in favor ofTransactionAspectSupport.setTransactionAttributes(Properties)TransactionInterceptor(PlatformTransactionManager ptm, TransactionAttributeSource tas)Deprecated.as of 5.2.5, in favor ofTransactionInterceptor(TransactionManager, TransactionAttributeSource)Uses of PlatformTransactionManager in org.springframework.transaction.jta
Classes in org.springframework.transaction.jta that implement PlatformTransactionManager Modifier and Type Class Description classJtaTransactionManagerPlatformTransactionManagerimplementation for JTA, delegating to a backend JTA provider.classWebLogicJtaTransactionManagerSpecialJtaTransactionManagervariant for BEA WebLogic (9.0 and higher).classWebSphereUowTransactionManagerWebSphere-specific PlatformTransactionManager implementation that delegates to aUOWManagerinstance, obtained from WebSphere's JNDI environment.Uses of PlatformTransactionManager in org.springframework.transaction.support
Subinterfaces of PlatformTransactionManager in org.springframework.transaction.support Modifier and Type Interface Description interfaceCallbackPreferringPlatformTransactionManagerExtension of thePlatformTransactionManagerinterface, exposing a method for executing a given callback within a transaction.interfaceResourceTransactionManagerExtension of thePlatformTransactionManagerinterface, indicating a native resource transaction manager, operating on a single target resource.Classes in org.springframework.transaction.support that implement PlatformTransactionManager Modifier and Type Class Description classAbstractPlatformTransactionManagerAbstract base class that implements Spring's standard transaction workflow, serving as basis for concrete platform transaction managers likeJtaTransactionManager.Methods in org.springframework.transaction.support that return PlatformTransactionManager Modifier and Type Method Description PlatformTransactionManagerTransactionTemplate. getTransactionManager()Return the transaction management strategy to be used.Methods in org.springframework.transaction.support with parameters of type PlatformTransactionManager Modifier and Type Method Description voidTransactionTemplate. setTransactionManager(PlatformTransactionManager transactionManager)Set the transaction management strategy to be used.Constructors in org.springframework.transaction.support with parameters of type PlatformTransactionManager Constructor 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.