パッケージ org.springframework.aop
インターフェース Pointcut
- すべての既知のサブインターフェース:
ExpressionPointcut
- すべての既知の実装クラス:
AbstractExpressionPointcut
、AbstractRegexpMethodPointcut
、AnnotationMatchingPointcut
、AspectJExpressionPointcut
、ComposablePointcut
、ControlFlowPointcut
、DynamicMethodMatcherPointcut
、JCacheOperationSourcePointcut
、JdkRegexpMethodPointcut
、NameMatchMethodPointcut
、StaticMethodMatcherPointcut
、StaticMethodMatcherPointcutAdvisor
public interface Pointcut
コア Spring ポイントカット抽象化。
ポイントカットは ClassFilter
と MethodMatcher
で構成されます。これらの基本的な用語とポイントカット自体の両方を組み合わせて、(ComposablePointcut
などを介して)組み合わせを構築できます。
- 作成者:
- Rod Johnson
- 関連事項:
フィールドサマリー
メソッドのサマリー
修飾子と型メソッド説明このポイントカットの ClassFilter を返します。このポイントカットの MethodMatcher を返します。
フィールドの詳細
TRUE
常に一致する Canonical Pointcut インスタンス。
メソッドの詳細
getClassFilter
ClassFilter getClassFilter()このポイントカットの ClassFilter を返します。- 戻り値:
- ClassFilter (非
null
)
getMethodMatcher
MethodMatcher getMethodMatcher()このポイントカットの MethodMatcher を返します。- 戻り値:
- MethodMatcher (非
null
)