Uses of Interface
org.springframework.transaction.TransactionManager
Packages that use TransactionManager
Package
Description
Spring's core transaction management APIs (independent of any specific transaction
management system); an exception hierarchy for Spring's transaction infrastructure;
and transaction manager, definition, and status interfaces.
Spring's support for annotation-based transaction demarcation.
AOP-based solution for declarative transaction demarcation.
Transaction SPI implementation for JTA.
Support classes for reactive transaction management.
Support classes for the org.springframework.transaction package.
-
Uses of TransactionManager in org.springframework.transaction
Subinterfaces of TransactionManager in org.springframework.transactionModifier and TypeInterfaceDescriptioninterfaceCommon configuration interface for transaction manager implementations.interfaceThis is the central interface in Spring's imperative transaction infrastructure.interfaceThis is the central interface in Spring's reactive transaction infrastructure. -
Uses of TransactionManager in org.springframework.transaction.annotation
Fields in org.springframework.transaction.annotation declared as TransactionManagerModifier and TypeFieldDescriptionprotected TransactionManagerAbstractTransactionManagementConfiguration.txManagerDefault transaction manager, as configured through aTransactionManagementConfigurer.Methods in org.springframework.transaction.annotation that return TransactionManagerModifier and TypeMethodDescriptionTransactionManagementConfigurer.annotationDrivenTransactionManager()Return the default transaction manager bean to use for annotation-driven database transaction management, i.e. -
Uses of TransactionManager in org.springframework.transaction.interceptor
Methods in org.springframework.transaction.interceptor that return TransactionManagerModifier and TypeMethodDescriptionprotected TransactionManagerTransactionAspectSupport.determineTransactionManager(TransactionAttribute txAttr) Deprecated.protected TransactionManagerTransactionAspectSupport.determineTransactionManager(TransactionAttribute txAttr, Class<?> targetClass) Determine the specific transaction manager to use for the given transaction.TransactionAspectSupport.getTransactionManager()Return the default transaction manager, ornullif unknown.Methods in org.springframework.transaction.interceptor with parameters of type TransactionManagerModifier and TypeMethodDescriptionvoidTransactionAspectSupport.setTransactionManager(TransactionManager transactionManager) Specify the default transaction manager to use to drive transactions.Constructors in org.springframework.transaction.interceptor with parameters of type TransactionManagerModifierConstructorDescriptionCreate a new TransactionInterceptor. -
Uses of TransactionManager in org.springframework.transaction.jta
Classes in org.springframework.transaction.jta that implement TransactionManagerModifier and TypeClassDescriptionclassPlatformTransactionManagerimplementation for JTA, delegating to a backend JTA provider. -
Uses of TransactionManager in org.springframework.transaction.reactive
Classes in org.springframework.transaction.reactive that implement TransactionManagerModifier and TypeClassDescriptionclassAbstract base class that implements Spring's standard reactive transaction workflow, serving as basis for concrete platform transaction managers. -
Uses of TransactionManager in org.springframework.transaction.support
Subinterfaces of TransactionManager in org.springframework.transaction.supportModifier and TypeInterfaceDescriptioninterfaceExtension of thePlatformTransactionManagerinterface, exposing a method for executing a given callback within a transaction.interfaceExtension of thePlatformTransactionManagerinterface, indicating a native resource transaction manager, operating on a single target resource.Classes in org.springframework.transaction.support that implement TransactionManagerModifier and TypeClassDescriptionclassAbstract base class that implements Spring's standard transaction workflow, serving as basis for concrete platform transaction managers likeJtaTransactionManager.
TransactionAspectSupport.determineTransactionManager(TransactionAttribute, Class)