接口 Pointcut
- 所有已知子接口:
ExpressionPointcut
- 所有已知实现类:
AbstractExpressionPointcut,AbstractRegexpMethodPointcut,AnnotationMatchingPointcut,AspectJExpressionPointcut,ComposablePointcut,ControlFlowPointcut,DynamicMethodMatcherPointcut,JCacheOperationSourcePointcut,JdkRegexpMethodPointcut,NameMatchMethodPointcut,StaticMethodMatcherPointcut,StaticMethodMatcherPointcutAdvisor
public interface Pointcut
Core Spring pointcut abstraction.A pointcut is composed of a
ClassFilterand aMethodMatcher. Both these basic terms and a Pointcut itself can be combined to build up combinations (e.g. throughComposablePointcut).- 作者:
- Rod Johnson
- 另请参阅:
ClassFilter,MethodMatcher,Pointcuts,ClassFilters,MethodMatchers
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 ClassFiltergetClassFilter()Return the ClassFilter for this pointcut.MethodMatchergetMethodMatcher()Return the MethodMatcher for this pointcut.
方法详细资料
getClassFilter
ClassFilter getClassFilter()
Return the ClassFilter for this pointcut.- 返回:
- the ClassFilter (never
null)
getMethodMatcher
MethodMatcher getMethodMatcher()
Return the MethodMatcher for this pointcut.- 返回:
- the MethodMatcher (never
null)