类 AspectJAdviceParameterNameDiscoverer
- java.lang.Object
- org.springframework.aop.aspectj.AspectJAdviceParameterNameDiscoverer
- 所有已实现的接口:
ParameterNameDiscoverer
public class AspectJAdviceParameterNameDiscoverer extends Object implements ParameterNameDiscoverer
ParameterNameDiscovererimplementation that tries to deduce parameter names for an advice method from the pointcut expression, returning, and throwing clauses. If an unambiguous interpretation is not available, it returnsnull.This class interprets arguments in the following way:
- If the first parameter of the method is of type
JoinPointorProceedingJoinPoint, it is assumed to be for passingthisJoinPointto the advice, and the parameter name will be assigned the value"thisJoinPoint". - If the first parameter of the method is of type
JoinPoint.StaticPart, it is assumed to be for passing"thisJoinPointStaticPart"to the advice, and the parameter name will be assigned the value"thisJoinPointStaticPart". - If a
throwingNamehas been set, and there are no unbound arguments of typeThrowable+, then anIllegalArgumentExceptionis raised. If there is more than one unbound argument of typeThrowable+, then anAspectJAdviceParameterNameDiscoverer.AmbiguousBindingExceptionis raised. If there is exactly one unbound argument of typeThrowable+, then the corresponding parameter name is assigned the value <throwingName>. - If there remain unbound arguments, then the pointcut expression is examined. Let
abe the number of annotation-based pointcut expressions (@annotation, @this, @target, @args, @within, @withincode) that are used in binding form. Usage in binding form has itself to be deduced: if the expression inside the pointcut is a single string literal that meets Java variable name conventions it is assumed to be a variable name. Ifais zero we proceed to the next stage. Ifa> 1 then anAmbiguousBindingExceptionis raised. Ifa== 1, and there are no unbound arguments of typeAnnotation+, then anIllegalArgumentExceptionis raised. if there is exactly one such argument, then the corresponding parameter name is assigned the value from the pointcut expression. - If a returningName has been set, and there are no unbound arguments then an
IllegalArgumentExceptionis raised. If there is more than one unbound argument then anAmbiguousBindingExceptionis raised. If there is exactly one unbound argument then the corresponding parameter name is assigned the value <returningName>. - If there remain unbound arguments, then the pointcut expression is examined once more for
this,target, andargspointcut expressions used in the binding form (binding forms are deduced as described for the annotation based pointcuts). If there remains more than one unbound argument of a primitive type (which can only be bound inargs) then anAmbiguousBindingExceptionis raised. If there is exactly one argument of a primitive type, then if exactly oneargsbound variable was found, we assign the corresponding parameter name the variable name. If there were noargsbound variables found anIllegalStateExceptionis raised. If there are multipleargsbound variables, anAmbiguousBindingExceptionis raised. At this point, if there remains more than one unbound argument we raise anAmbiguousBindingException. If there are no unbound arguments remaining, we are done. If there is exactly one unbound argument remaining, and only one candidate variable name unbound fromthis,target, orargs, it is assigned as the corresponding parameter name. If there are multiple possibilities, anAmbiguousBindingExceptionis raised.
The behavior on raising an
IllegalArgumentExceptionorAmbiguousBindingExceptionis configurable to allow this discoverer to be used as part of a chain-of-responsibility. By default the condition will be logged and thegetParameterNames(..)method will simply returnnull. If theraiseExceptionsproperty is set totrue, the conditions will be thrown asIllegalArgumentExceptionandAmbiguousBindingException, respectively.Was that perfectly clear? ;)
Short version: If an unambiguous binding can be deduced, then it is. If the advice requirements cannot possibly be satisfied, then
nullis returned. By setting theraiseExceptionsproperty totrue, descriptive exceptions will be thrown instead of returningnullin the case that the parameter names cannot be discovered.- 从以下版本开始:
- 2.0
- 作者:
- Adrian Colyer, Juergen Hoeller
嵌套类概要
嵌套类 修饰符和类型 类 说明 static classAspectJAdviceParameterNameDiscoverer.AmbiguousBindingExceptionThrown in response to an ambiguous binding being detected when trying to resolve a method's parameter names.
构造器概要
构造器 构造器 说明 AspectJAdviceParameterNameDiscoverer(String pointcutExpression)Create a new discoverer that attempts to discover parameter names.
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 String[]getParameterNames(Constructor<?> ctor)An advice method can never be a constructor in Spring.String[]getParameterNames(Method method)Deduce the parameter names for an advice method.voidsetRaiseExceptions(boolean raiseExceptions)Indicate whetherIllegalArgumentExceptionandAspectJAdviceParameterNameDiscoverer.AmbiguousBindingExceptionmust be thrown as appropriate in the case of failing to deduce advice parameter names.voidsetReturningName(String returningName)IfafterReturningadvice binds the return value, the returning variable name must be specified.voidsetThrowingName(String throwingName)IfafterThrowingadvice binds the thrown value, the throwing variable name must be specified.
构造器详细资料
AspectJAdviceParameterNameDiscoverer
public AspectJAdviceParameterNameDiscoverer(@Nullable String pointcutExpression)
Create a new discoverer that attempts to discover parameter names. from the given pointcut expression.
方法详细资料
setRaiseExceptions
public void setRaiseExceptions(boolean raiseExceptions)
Indicate whetherIllegalArgumentExceptionandAspectJAdviceParameterNameDiscoverer.AmbiguousBindingExceptionmust be thrown as appropriate in the case of failing to deduce advice parameter names.- 参数:
raiseExceptions-trueif exceptions are to be thrown
setReturningName
public void setReturningName(@Nullable String returningName)
IfafterReturningadvice binds the return value, the returning variable name must be specified.- 参数:
returningName- the name of the returning variable
setThrowingName
public void setThrowingName(@Nullable String throwingName)
IfafterThrowingadvice binds the thrown value, the throwing variable name must be specified.- 参数:
throwingName- the name of the throwing variable
getParameterNames
@Nullable public String[] getParameterNames(Method method)
Deduce the parameter names for an advice method.See the
class level javadocfor this class for details of the algorithm used.- 指定者:
getParameterNames在接口中ParameterNameDiscoverer- 参数:
method- the targetMethod- 返回:
- the parameter names
getParameterNames
@Nullable public String[] getParameterNames(Constructor<?> ctor)
An advice method can never be a constructor in Spring.- 指定者:
getParameterNames在接口中ParameterNameDiscoverer- 参数:
ctor- the constructor to find parameter names for- 返回:
null- 抛出:
UnsupportedOperationException- ifraiseExceptionshas been set totrue