org.springframework.transaction.interceptor
Class TransactionInterceptor
java.lang.Object
org.springframework.transaction.interceptor.TransactionAspectSupport
org.springframework.transaction.interceptor.TransactionInterceptor
- All Implemented Interfaces:
- Serializable, Advice, Interceptor, MethodInterceptor, BeanFactoryAware, InitializingBean
public class TransactionInterceptor
- extends TransactionAspectSupport
- implements MethodInterceptor, Serializable
AOP Alliance MethodInterceptor for declarative transaction
management using the common Spring transaction infrastructure
(PlatformTransactionManager
).
Derives from the TransactionAspectSupport
class which
contains the integration with Spring's underlying transaction API.
TransactionInterceptor simply calls the relevant superclass methods
such as TransactionAspectSupport.createTransactionIfNecessary(java.lang.reflect.Method, java.lang.Class)
in the correct order.
TransactionInterceptors are thread-safe.
- Author:
- Rod Johnson, Juergen Hoeller
- See Also:
TransactionProxyFactoryBean
,
ProxyFactoryBean
,
ProxyFactory
,
Serialized Form
Methods inherited from class org.springframework.transaction.interceptor.TransactionAspectSupport |
afterPropertiesSet, cleanupTransactionInfo, commitTransactionAfterReturning, completeTransactionAfterThrowing, createTransactionIfNecessary, createTransactionIfNecessary, currentTransactionInfo, currentTransactionStatus, determineTransactionManager, getBeanFactory, getTransactionAttributeSource, getTransactionManager, getTransactionManagerBeanName, methodIdentification, prepareTransactionInfo, setBeanFactory, setTransactionAttributes, setTransactionAttributeSource, setTransactionAttributeSources, setTransactionManager, setTransactionManagerBeanName |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
TransactionInterceptor
public TransactionInterceptor()
- Create a new TransactionInterceptor.
Transaction manager and transaction attributes still need to be set.
- See Also:
TransactionAspectSupport.setTransactionManager(org.springframework.transaction.PlatformTransactionManager)
,
TransactionAspectSupport.setTransactionAttributes(java.util.Properties)
,
TransactionAspectSupport.setTransactionAttributeSource(TransactionAttributeSource)
TransactionInterceptor
public TransactionInterceptor(PlatformTransactionManager ptm,
Properties attributes)
- Create a new TransactionInterceptor.
- Parameters:
ptm
- the transaction manager to perform the actual transaction managementattributes
- the transaction attributes in properties format- See Also:
TransactionAspectSupport.setTransactionManager(org.springframework.transaction.PlatformTransactionManager)
,
TransactionAspectSupport.setTransactionAttributes(java.util.Properties)
TransactionInterceptor
public TransactionInterceptor(PlatformTransactionManager ptm,
TransactionAttributeSource tas)
- Create a new TransactionInterceptor.
- Parameters:
ptm
- the transaction manager to perform the actual transaction managementtas
- the attribute source to be used to find transaction attributes- See Also:
TransactionAspectSupport.setTransactionManager(org.springframework.transaction.PlatformTransactionManager)
,
TransactionAspectSupport.setTransactionAttributeSource(TransactionAttributeSource)
invoke
public Object invoke(MethodInvocation invocation)
throws Throwable
- Specified by:
invoke
in interface MethodInterceptor
- Throws:
Throwable