パッケージ org.springframework.aop

インターフェース Pointcut

すべての既知のサブインターフェース:
ExpressionPointcut
すべての既知の実装クラス:
AbstractExpressionPointcutAbstractRegexpMethodPointcutAnnotationMatchingPointcutAspectJExpressionPointcutComposablePointcutControlFlowPointcutDynamicMethodMatcherPointcutJCacheOperationSourcePointcutJdkRegexpMethodPointcutNameMatchMethodPointcutStaticMethodMatcherPointcutStaticMethodMatcherPointcutAdvisor

public interface Pointcut
コア Spring ポイントカット抽象化。

ポイントカットは ClassFilterMethodMatcher で構成されます。これらの基本的な用語とポイントカット自体の両方を組み合わせて、(ComposablePointcut などを介して)組み合わせを構築できます。

作成者:
Rod Johnson
関連事項:
  • フィールドサマリー

    フィールド
    修飾子と型
    フィールド
    説明
    static final Pointcut
    常に一致する Canonical Pointcut インスタンス。
  • メソッドのサマリー

    修飾子と型
    メソッド
    説明
    このポイントカットの ClassFilter を返します。
    このポイントカットの MethodMatcher を返します。
  • フィールドの詳細

    • TRUE

      static final Pointcut TRUE
      常に一致する Canonical Pointcut インスタンス。
  • メソッドの詳細

    • getClassFilter

      ClassFilter getClassFilter()
      このポイントカットの ClassFilter を返します。
      戻り値:
      ClassFilter (非 null)
    • getMethodMatcher

      MethodMatcher getMethodMatcher()
      このポイントカットの MethodMatcher を返します。
      戻り値:
      MethodMatcher (非 null)