Uses of Interface
org.springframework.transaction.interceptor.TransactionAttributeSource
Packages that use TransactionAttributeSource
Package
Description
Transactional support classes for the Spring TestContext Framework.
Spring's support for annotation-based transaction demarcation.
AOP-based solution for declarative transaction demarcation.
-
Uses of TransactionAttributeSource in org.springframework.test.context.transaction
Fields in org.springframework.test.context.transaction declared as TransactionAttributeSourceModifier and TypeFieldDescriptionprotected final TransactionAttributeSource
TransactionalTestExecutionListener.attributeSource
-
Uses of TransactionAttributeSource in org.springframework.transaction.annotation
Classes in org.springframework.transaction.annotation that implement TransactionAttributeSourceModifier and TypeClassDescriptionclass
Implementation of theTransactionAttributeSource
interface for working with transaction metadata in JDK 1.5+ annotation format.Methods in org.springframework.transaction.annotation that return TransactionAttributeSourceModifier and TypeMethodDescriptionProxyTransactionManagementConfiguration.transactionAttributeSource()
Methods in org.springframework.transaction.annotation with parameters of type TransactionAttributeSourceModifier and TypeMethodDescriptionProxyTransactionManagementConfiguration.transactionAdvisor
(TransactionAttributeSource transactionAttributeSource, TransactionInterceptor transactionInterceptor) ProxyTransactionManagementConfiguration.transactionInterceptor
(TransactionAttributeSource transactionAttributeSource) -
Uses of TransactionAttributeSource in org.springframework.transaction.interceptor
Classes in org.springframework.transaction.interceptor that implement TransactionAttributeSourceModifier and TypeClassDescriptionclass
Abstract implementation ofTransactionAttributeSource
that caches attributes for methods and implements a fallback policy: 1.class
CompositeTransactionAttributeSource
implementation that iterates over a given array ofTransactionAttributeSource
instances.class
Very simple implementation of TransactionAttributeSource which will always return the same TransactionAttribute for all methods fed to it.class
SimpleTransactionAttributeSource
implementation that allows attributes to be stored per method in aMap
.class
SimpleTransactionAttributeSource
implementation that allows attributes to be matched by registered name.Methods in org.springframework.transaction.interceptor that return TransactionAttributeSourceModifier and TypeMethodDescriptionTransactionAspectSupport.getTransactionAttributeSource()
Return the transaction attribute source.final TransactionAttributeSource[]
CompositeTransactionAttributeSource.getTransactionAttributeSources()
Return the TransactionAttributeSource instances that this CompositeTransactionAttributeSource combines.Methods in org.springframework.transaction.interceptor with parameters of type TransactionAttributeSourceModifier and TypeMethodDescriptionvoid
BeanFactoryTransactionAttributeSourceAdvisor.setTransactionAttributeSource
(TransactionAttributeSource transactionAttributeSource) Set the transaction attribute source which is used to find transaction attributes.void
TransactionAspectSupport.setTransactionAttributeSource
(TransactionAttributeSource transactionAttributeSource) Set the transaction attribute source which is used to find transaction attributes.void
TransactionProxyFactoryBean.setTransactionAttributeSource
(TransactionAttributeSource transactionAttributeSource) Set the transaction attribute source which is used to find transaction attributes.void
TransactionAspectSupport.setTransactionAttributeSources
(TransactionAttributeSource... transactionAttributeSources) Set multiple transaction attribute sources which are used to find transaction attributes.Constructors in org.springframework.transaction.interceptor with parameters of type TransactionAttributeSourceModifierConstructorDescriptionCompositeTransactionAttributeSource
(TransactionAttributeSource... transactionAttributeSources) Create a new CompositeTransactionAttributeSource for the given sources.Deprecated.Create a new TransactionInterceptor.
TransactionInterceptor(TransactionManager, TransactionAttributeSource)