|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.aop.aspectj.AbstractAspectJAdvice
public abstract class AbstractAspectJAdvice
Superclass for Spring Advices wrapping an AspectJ aspect or annotated advice method.
Field Summary | |
---|---|
protected Method |
aspectJAdviceMethod
|
protected static String |
JOIN_POINT_KEY
Key used in ReflectiveMethodInvocation userAtributes map for the current joinpoint. |
Fields inherited from interface org.springframework.core.Ordered |
---|
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE |
Constructor Summary | |
---|---|
AbstractAspectJAdvice(Method aspectJAdviceMethod,
AspectJExpressionPointcut pointcutExpression,
AspectInstanceFactory aif)
|
Method Summary | |
---|---|
void |
afterPropertiesSet()
Argument names have to be discovered and set on the associated pointcut expression, and we also calculate argument bindings for advice invocation so that actual dispatch can be as fast as possible. |
protected Object[] |
argBinding(org.aspectj.lang.JoinPoint jp,
org.aspectj.weaver.tools.JoinPointMatch jpMatch,
Object returnValue,
Throwable t)
Take the arguments at the method execution join point and output a set of arguments to the advice method |
static org.aspectj.lang.JoinPoint |
currentJoinPoint()
Lazily instantiate joinpoint for the current invocation. |
AspectInstanceFactory |
getAspectInstanceFactory()
|
Method |
getAspectJAdviceMethod()
|
String |
getAspectName()
The name of the aspect (bean) in which the advice was declared. |
int |
getDeclarationOrder()
The declaration order of the advice member within the aspect. |
protected Class |
getDiscoveredReturningType()
|
protected Class |
getDiscoveredThrowingType()
|
protected org.aspectj.lang.JoinPoint |
getJoinPoint()
|
protected org.aspectj.weaver.tools.JoinPointMatch |
getJoinPointMatch()
|
protected org.aspectj.weaver.tools.JoinPointMatch |
getJoinPointMatch(ReflectiveMethodInvocation rmi)
|
int |
getOrder()
Return the order value of this object, with a higher value meaning greater in terms of sorting. |
AspectJExpressionPointcut |
getPointcut()
|
protected Object |
invokeAdviceMethod(org.aspectj.lang.JoinPoint jp,
org.aspectj.weaver.tools.JoinPointMatch jpMatch,
Object returnValue,
Throwable t)
|
protected Object |
invokeAdviceMethod(org.aspectj.weaver.tools.JoinPointMatch jpMatch,
Object returnValue,
Throwable t)
Invoke the advice method. |
protected Object |
invokeAdviceMethodWithGivenArgs(Object[] args)
|
void |
setArgumentNames(String argNames)
Set by creator of this advice object if the argument names are known. |
void |
setArgumentNamesFromStringArray(String[] args)
|
void |
setAspectName(String name)
|
void |
setDeclarationOrder(int order)
Sets the declaration order of this advice within the aspect |
void |
setReturningName(String name)
|
protected void |
setReturningNameNoCheck(String name)
We need to hold the returning name at this level for argument binding calculations, this method allows the afterReturning advice subclass to set the name. |
void |
setThrowingName(String name)
|
protected void |
setThrowingNameNoCheck(String name)
We need to hold the throwing name at this level for argument binding calculations, this method allows the afterThrowing advice subclass to set the name. |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.springframework.aop.aspectj.AspectJPrecedenceInformation |
---|
isAfterAdvice, isBeforeAdvice |
Field Detail |
---|
protected static final String JOIN_POINT_KEY
protected final Method aspectJAdviceMethod
Constructor Detail |
---|
public AbstractAspectJAdvice(Method aspectJAdviceMethod, AspectJExpressionPointcut pointcutExpression, AspectInstanceFactory aif)
Method Detail |
---|
public static org.aspectj.lang.JoinPoint currentJoinPoint()
Do not use if access is available to the current ReflectiveMethodInvocation (in an around advice).
public final Method getAspectJAdviceMethod()
public final AspectJExpressionPointcut getPointcut()
public final AspectInstanceFactory getAspectInstanceFactory()
public int getOrder()
Ordered
Normally starting with 0 or 1, with Ordered.LOWEST_PRECEDENCE
indicating greatest. Same order values will result in arbitrary
positions for the affected objects.
Higher value can be interpreted as lower priority, consequently the first object has highest priority (somewhat analogous to Servlet "load-on-startup" values).
Note that order values below 0 are reserved for framework purposes. Application-specified values should always be 0 or greater, with only framework components (internal or third-party) supposed to use lower values.
getOrder
in interface Ordered
Ordered.LOWEST_PRECEDENCE
public void setAspectName(String name)
public String getAspectName()
AspectJPrecedenceInformation
getAspectName
in interface AspectJPrecedenceInformation
public void setDeclarationOrder(int order)
public int getDeclarationOrder()
AspectJPrecedenceInformation
getDeclarationOrder
in interface AspectJPrecedenceInformation
public void setArgumentNames(String argNames)
argNames
- comma delimited list of arg namespublic void setArgumentNamesFromStringArray(String[] args)
public void setReturningName(String name)
protected void setReturningNameNoCheck(String name)
protected Class getDiscoveredReturningType()
public void setThrowingName(String name)
protected void setThrowingNameNoCheck(String name)
protected Class getDiscoveredThrowingType()
public void afterPropertiesSet() throws Exception
afterPropertiesSet
in interface InitializingBean
Exception
- in the event of misconfiguration (such
as failure to set an essential property) or if initialization fails.protected Object[] argBinding(org.aspectj.lang.JoinPoint jp, org.aspectj.weaver.tools.JoinPointMatch jpMatch, Object returnValue, Throwable t)
jpMatch
- the join point match that matched this execution join pointreturnValue
- the return value from the method execution (may be null)t
- the exception thrown by the method execution (may be null)
protected org.aspectj.lang.JoinPoint getJoinPoint()
protected org.aspectj.weaver.tools.JoinPointMatch getJoinPointMatch()
protected org.aspectj.weaver.tools.JoinPointMatch getJoinPointMatch(ReflectiveMethodInvocation rmi)
protected Object invokeAdviceMethod(org.aspectj.weaver.tools.JoinPointMatch jpMatch, Object returnValue, Throwable t) throws Throwable
jpMatch
- the JoinPointMatch that matched this execution join pointreturnValue
- the return value from the method execution (may be null)t
- the exception thrown by the method execution (may be null)
Throwable
protected Object invokeAdviceMethod(org.aspectj.lang.JoinPoint jp, org.aspectj.weaver.tools.JoinPointMatch jpMatch, Object returnValue, Throwable t) throws Throwable
Throwable
protected Object invokeAdviceMethodWithGivenArgs(Object[] args) throws Throwable
Throwable
public String toString()
toString
in class Object
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |