类 StaticMethodMatcherPointcut
java.lang.Object
cn.taketoday.core.OrderedSupport
cn.taketoday.aop.support.StaticMethodMatcher
cn.taketoday.aop.support.StaticMethodMatcherPointcut
- 所有已实现的接口:
MethodMatcher,Pointcut,Ordered
Convenient superclass when we want to force subclasses to implement the
MethodMatcher interface but subclasses will want to be pointcuts.
The "classFilter" property can be set to customize
ClassFilter behavior. The default is ClassFilter.TRUE.
- 从以下版本开始:
- 3.0
- 作者:
- Rod Johnson, Juergen Hoeller, TODAY 2021/2/1 18:34
-
字段概要
从类继承的字段 cn.taketoday.core.OrderedSupport
order从接口继承的字段 cn.taketoday.aop.MethodMatcher
TRUE从接口继承的字段 cn.taketoday.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明Return the ClassFilter for this pointcut.final MethodMatcherReturn the MethodMatcher for this pointcut.voidsetClassFilter(ClassFilter classFilter) Set theClassFilterto use for this pointcut.从类继承的方法 cn.taketoday.aop.support.StaticMethodMatcher
isRuntime, matches从类继承的方法 cn.taketoday.core.OrderedSupport
getOrder, setOrder从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait从接口继承的方法 cn.taketoday.aop.MethodMatcher
matches
-
构造器详细资料
-
StaticMethodMatcherPointcut
public StaticMethodMatcherPointcut()
-
-
方法详细资料
-
setClassFilter
Set theClassFilterto use for this pointcut. Default isClassFilter.TRUE. -
getClassFilter
从接口复制的说明:PointcutReturn the ClassFilter for this pointcut.- 指定者:
getClassFilter在接口中Pointcut- 返回:
- the ClassFilter (never
null)
-
getMethodMatcher
从接口复制的说明:PointcutReturn the MethodMatcher for this pointcut.- 指定者:
getMethodMatcher在接口中Pointcut- 返回:
- the MethodMatcher (never
null)
-