程序包 cn.taketoday.aop

接口 Pointcut

所有已知子接口:
ExpressionPointcut
所有已知实现类:
AbstractExpressionPointcut, AbstractRegexpMethodPointcut, AnnotationMatchingPointcut, AspectJExpressionPointcut, ComposablePointcut, ControlFlowPointcut, DynamicMethodMatcherPointcut, JdkRegexpMethodPointcut, NameMatchMethodPointcut, StaticMethodMatcherPointcut, StaticMethodMatcherPointcutAdvisor

public interface Pointcut
Core pointcut abstraction.

A pointcut is composed of a ClassFilter and a MethodMatcher. Both these basic terms and a Pointcut itself can be combined to build up combinations (e.g. through ComposablePointcut).

从以下版本开始:
3.0
作者:
Rod Johnson, TODAY 2021/2/1 18:12
另请参阅:
  • 字段概要

    字段
    修饰符和类型
    字段
    说明
    static final Pointcut
    Canonical Pointcut instance that always matches.
  • 方法概要

    修饰符和类型
    方法
    说明
    Return the ClassFilter for this pointcut.
    Return the MethodMatcher for this pointcut.
  • 字段详细资料

    • TRUE

      static final Pointcut TRUE
      Canonical Pointcut instance that always matches.
  • 方法详细资料

    • 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)