org.springframework.transaction.interceptor
Class TransactionAttributeSourceAdvisor
java.lang.Object
org.springframework.aop.support.StaticMethodMatcher
org.springframework.aop.support.StaticMethodMatcherPointcut
org.springframework.aop.support.StaticMethodMatcherPointcutAdvisor
org.springframework.transaction.interceptor.TransactionAttributeSourceAdvisor
- All Implemented Interfaces:
- Serializable, Advisor, MethodMatcher, Pointcut, PointcutAdvisor, Ordered
public class TransactionAttributeSourceAdvisor
- extends StaticMethodMatcherPointcutAdvisor
Advisor driven by a TransactionAttributeSource, used to exclude
a TransactionInterceptor from methods that are non-transactional.
Because the AOP framework caches advice calculations, this is normally
faster than just letting the TransactionInterceptor run and find out
itself that it has no work to do.
- Author:
- Rod Johnson, Juergen Hoeller
- See Also:
TransactionInterceptor
,
TransactionProxyFactoryBean
,
Serialized Form
Fields inherited from interface org.springframework.aop.Pointcut |
TRUE |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
TransactionAttributeSourceAdvisor
public TransactionAttributeSourceAdvisor()
- Create a new TransactionAttributeSourceAdvisor.
TransactionAttributeSourceAdvisor
public TransactionAttributeSourceAdvisor(TransactionInterceptor interceptor)
- Create a new TransactionAttributeSourceAdvisor.
- Parameters:
interceptor
- the transaction interceptor to use for this advisor
setTransactionInterceptor
public void setTransactionInterceptor(TransactionInterceptor interceptor)
- Set the transaction interceptor to use for this advisor.
matches
public boolean matches(Method method,
Class targetClass)
- Description copied from interface:
MethodMatcher
- Perform static checking. If this returns false, or if the isRuntime() method
returns false, no runtime check will be made.
- Parameters:
method
- the candidate methodtargetClass
- target class (may be null
, in which case the candidate
class must be taken to be the method's declaring class)
- Returns:
- whether or not this method matches statically
Copyright (c) 2002-2006 The Spring Framework Project.