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:
- Advisor, MethodMatcher, Ordered, Pointcut, PointcutAdvisor, Serializable
- 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
- 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(TransactionInterceptor ti)
matches
public boolean matches(Method m,
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:
m
- 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) 2003-2004 The Spring Framework Project.