org.springframework.aop.support
Class DynamicMethodMatcher
- Direct Known Subclasses:
- DynamicMethodMatcherPointcutAroundAdvisor
- public abstract class DynamicMethodMatcher
- implements MethodMatcher
Convenient abstract superclass for dynamic method matchers,
which do care about arguments at runtime.
| Method Summary |
final boolean | isRuntime() |
boolean | matches(Method m, Class targetClass) Can override to add preconditions for dynamic matching. |
isRuntime
public final boolean isRuntime()
matches
public boolean matches(Method m, Class targetClass)
- Can override to add preconditions for dynamic matching. This implementation
always returns true.