类 AspectJExpressionPointcut
- java.lang.Object
- org.springframework.aop.support.AbstractExpressionPointcut
- org.springframework.aop.aspectj.AspectJExpressionPointcut
- 所有已实现的接口:
Serializable,ClassFilter,IntroductionAwareMethodMatcher,MethodMatcher,Pointcut,ExpressionPointcut,Aware,BeanFactoryAware
public class AspectJExpressionPointcut extends AbstractExpressionPointcut implements ClassFilter, IntroductionAwareMethodMatcher, BeanFactoryAware
SpringPointcutimplementation that uses the AspectJ weaver to evaluate a pointcut expression.The pointcut expression value is an AspectJ expression. This can reference other pointcuts and use composition and other operations.
Naturally, as this is to be processed by Spring AOP's proxy-based model, only method execution pointcuts are supported.
- 从以下版本开始:
- 2.0
- 作者:
- Rob Harrop, Adrian Colyer, Rod Johnson, Juergen Hoeller, Ramnivas Laddad, Dave Syer
- 另请参阅:
- 序列化表格
字段概要
从接口继承的字段 org.springframework.aop.ClassFilter
TRUE
从接口继承的字段 org.springframework.aop.MethodMatcher
TRUE
构造器概要
构造器 构造器 说明 AspectJExpressionPointcut()Create a new default AspectJExpressionPointcut.AspectJExpressionPointcut(Class<?> declarationScope, String[] paramNames, Class<?>[] paramTypes)Create a new AspectJExpressionPointcut with the given settings.
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 booleanequals(Object other)ClassFiltergetClassFilter()Return the ClassFilter for this pointcut.protected StringgetCurrentProxiedBeanName()MethodMatchergetMethodMatcher()Return the MethodMatcher for this pointcut.org.aspectj.weaver.tools.PointcutExpressiongetPointcutExpression()Return the underlying AspectJ pointcut expression.inthashCode()booleanisRuntime()Is this MethodMatcher dynamic, that is, must a final call be made on theMethodMatcher.matches(java.lang.reflect.Method, Class, Object[])method at runtime even if the 2-arg matches method returnstrue?booleanmatches(Class<?> targetClass)Should the pointcut apply to the given interface or target class?booleanmatches(Method method, Class<?> targetClass)Perform static checking whether the given method matches.booleanmatches(Method method, Class<?> targetClass, boolean hasIntroductions)Perform static checking whether the given method matches.booleanmatches(Method method, Class<?> targetClass, Object... args)Check whether there a runtime (dynamic) match for this method, which must have matched statically.voidsetBeanFactory(BeanFactory beanFactory)Callback that supplies the owning factory to a bean instance.voidsetParameterNames(String... names)Set the parameter names for the pointcut.voidsetParameterTypes(Class<?>... types)Set the parameter types for the pointcut.voidsetPointcutDeclarationScope(Class<?> pointcutDeclarationScope)Set the declaration scope for the pointcut.StringtoString()从类继承的方法 org.springframework.aop.support.AbstractExpressionPointcut
getExpression, getLocation, onSetExpression, setExpression, setLocation
构造器详细资料
AspectJExpressionPointcut
public AspectJExpressionPointcut()
Create a new default AspectJExpressionPointcut.
AspectJExpressionPointcut
public AspectJExpressionPointcut(Class<?> declarationScope, String[] paramNames, Class<?>[] paramTypes)
Create a new AspectJExpressionPointcut with the given settings.- 参数:
declarationScope- the declaration scope for the pointcutparamNames- the parameter names for the pointcutparamTypes- the parameter types for the pointcut
方法详细资料
setPointcutDeclarationScope
public void setPointcutDeclarationScope(Class<?> pointcutDeclarationScope)
Set the declaration scope for the pointcut.
setParameterNames
public void setParameterNames(String... names)
Set the parameter names for the pointcut.
setParameterTypes
public void setParameterTypes(Class<?>... types)
Set the parameter types for the pointcut.
setBeanFactory
public void setBeanFactory(BeanFactory beanFactory)
从接口复制的说明:BeanFactoryAwareCallback that supplies the owning factory to a bean instance.Invoked after the population of normal bean properties but before an initialization callback such as
InitializingBean.afterPropertiesSet()or a custom init-method.- 指定者:
setBeanFactory在接口中BeanFactoryAware- 参数:
beanFactory- owning BeanFactory (nevernull). The bean can immediately call methods on the factory.- 另请参阅:
BeanInitializationException
getClassFilter
public ClassFilter getClassFilter()
从接口复制的说明:PointcutReturn the ClassFilter for this pointcut.- 指定者:
getClassFilter在接口中Pointcut- 返回:
- the ClassFilter (never
null)
getMethodMatcher
public MethodMatcher getMethodMatcher()
从接口复制的说明:PointcutReturn the MethodMatcher for this pointcut.- 指定者:
getMethodMatcher在接口中Pointcut- 返回:
- the MethodMatcher (never
null)
getPointcutExpression
public org.aspectj.weaver.tools.PointcutExpression getPointcutExpression()
Return the underlying AspectJ pointcut expression.
matches
public boolean matches(Class<?> targetClass)
从接口复制的说明:ClassFilterShould the pointcut apply to the given interface or target class?- 指定者:
matches在接口中ClassFilter- 参数:
targetClass- the candidate target class- 返回:
- whether the advice should apply to the given target class
matches
public boolean matches(Method method, Class<?> targetClass, boolean hasIntroductions)
从接口复制的说明:IntroductionAwareMethodMatcherPerform static checking whether the given method matches. This may be invoked instead of the 2-argMethodMatcher.matches(java.lang.reflect.Method, Class)method if the caller supports the extended IntroductionAwareMethodMatcher interface.- 指定者:
matches在接口中IntroductionAwareMethodMatcher- 参数:
method- the candidate methodtargetClass- the target classhasIntroductions-trueif the object on whose behalf we are asking is the subject on one or more introductions;falseotherwise- 返回:
- whether or not this method matches statically
matches
public boolean matches(Method method, Class<?> targetClass)
从接口复制的说明:MethodMatcherPerform static checking whether the given method matches.If this returns
falseor if theMethodMatcher.isRuntime()method returnsfalse, no runtime check (i.e. noMethodMatcher.matches(java.lang.reflect.Method, Class, Object[])call) will be made.- 指定者:
matches在接口中MethodMatcher- 参数:
method- the candidate methodtargetClass- the target class- 返回:
- whether or not this method matches statically
isRuntime
public boolean isRuntime()
从接口复制的说明:MethodMatcherIs this MethodMatcher dynamic, that is, must a final call be made on theMethodMatcher.matches(java.lang.reflect.Method, Class, Object[])method at runtime even if the 2-arg matches method returnstrue?Can be invoked when an AOP proxy is created, and need not be invoked again before each method invocation,
- 指定者:
isRuntime在接口中MethodMatcher- 返回:
- whether or not a runtime match via the 3-arg
MethodMatcher.matches(java.lang.reflect.Method, Class, Object[])method is required if static matching passed
matches
public boolean matches(Method method, Class<?> targetClass, Object... args)
从接口复制的说明:MethodMatcherCheck whether there a runtime (dynamic) match for this method, which must have matched statically.This method is invoked only if the 2-arg matches method returns
truefor the given method and target class, and if theMethodMatcher.isRuntime()method returnstrue. Invoked immediately before potential running of the advice, after any advice earlier in the advice chain has run.- 指定者:
matches在接口中MethodMatcher- 参数:
method- the candidate methodtargetClass- the target classargs- arguments to the method- 返回:
- whether there's a runtime match
- 另请参阅:
MethodMatcher.matches(Method, Class)
getCurrentProxiedBeanName
@Nullable protected String getCurrentProxiedBeanName()