public class AspectJAfterAdvice extends AbstractAspectJAdvice implements MethodInterceptor, AfterAdvice, Serializable
aspectJAdviceMethod, JOIN_POINT_KEY| 构造器和说明 |
|---|
AspectJAfterAdvice(Method aspectJBeforeAdviceMethod,
AspectJExpressionPointcut pointcut,
AspectInstanceFactory aif) |
| 限定符和类型 | 方法和说明 |
|---|---|
Object |
invoke(MethodInvocation mi)
方法实现说明
|
boolean |
isAfterAdvice()
Return whether this is an after advice.
|
boolean |
isBeforeAdvice()
Return whether this is a before advice.
|
argBinding, buildSafePointcut, calculateArgumentBindings, createParameterNameDiscoverer, currentJoinPoint, getAspectClassLoader, getAspectInstanceFactory, getAspectJAdviceMethod, getAspectName, getDeclarationOrder, getDiscoveredReturningGenericType, getDiscoveredReturningType, getDiscoveredThrowingType, getJoinPoint, getJoinPointMatch, getJoinPointMatch, getOrder, getPointcut, invokeAdviceMethod, invokeAdviceMethod, invokeAdviceMethodWithGivenArgs, setArgumentNames, setArgumentNamesFromStringArray, setAspectName, setDeclarationOrder, setReturningName, setReturningNameNoCheck, setThrowingName, setThrowingNameNoCheck, supportsProceedingJoinPoint, toStringpublic AspectJAfterAdvice(Method aspectJBeforeAdviceMethod, AspectJExpressionPointcut pointcut, AspectInstanceFactory aif)
public Object invoke(MethodInvocation mi) throws Throwable
invoke 在接口中 MethodInterceptormi:主要调用对象是ReflectiveMethodInvocation - 会通过ReflectiveMethodInvocation.proceed()方法
来执行我们的拦截器链Throwablepublic boolean isBeforeAdvice()
AspectJPrecedenceInformationisBeforeAdvice 在接口中 AspectJPrecedenceInformationpublic boolean isAfterAdvice()
AspectJPrecedenceInformationisAfterAdvice 在接口中 AspectJPrecedenceInformation