Package org.springframework.aop.aspectj
Class AspectJAfterThrowingAdvice
- java.lang.Object
- org.springframework.aop.aspectj.AbstractAspectJAdvice
- org.springframework.aop.aspectj.AspectJAfterThrowingAdvice
- All Implemented Interfaces:
Serializable,Advice,Interceptor,MethodInterceptor,AfterAdvice,AspectJPrecedenceInformation,Ordered
public class AspectJAfterThrowingAdvice extends AbstractAspectJAdvice implements MethodInterceptor, AfterAdvice, Serializable
Spring AOP advice wrapping an AspectJ after-throwing advice method.- Since:
- 2.0
- Author:
- Rod Johnson
- See Also:
- Serialized Form
Field Summary
Fields inherited from class org.springframework.aop.aspectj.AbstractAspectJAdvice
aspectJAdviceMethod, JOIN_POINT_KEY
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
Constructor Summary
Constructors Constructor Description AspectJAfterThrowingAdvice(Method aspectJBeforeAdviceMethod, AspectJExpressionPointcut pointcut, AspectInstanceFactory aif)
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectinvoke(MethodInvocation mi)Implement this method to perform extra treatments before and after the invocation.booleanisAfterAdvice()Return whether this is an after advice.booleanisBeforeAdvice()Return whether this is a before advice.voidsetThrowingName(String name)Methods inherited from class org.springframework.aop.aspectj.AbstractAspectJAdvice
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, setThrowingNameNoCheck, supportsProceedingJoinPoint, toString
Constructor Detail
AspectJAfterThrowingAdvice
public AspectJAfterThrowingAdvice(Method aspectJBeforeAdviceMethod, AspectJExpressionPointcut pointcut, AspectInstanceFactory aif)
Method Detail
isBeforeAdvice
public boolean isBeforeAdvice()
Description copied from interface:AspectJPrecedenceInformationReturn whether this is a before advice.- Specified by:
isBeforeAdvicein interfaceAspectJPrecedenceInformation
isAfterAdvice
public boolean isAfterAdvice()
Description copied from interface:AspectJPrecedenceInformationReturn whether this is an after advice.- Specified by:
isAfterAdvicein interfaceAspectJPrecedenceInformation
setThrowingName
public void setThrowingName(String name)
- Overrides:
setThrowingNamein classAbstractAspectJAdvice
invoke
public Object invoke(MethodInvocation mi) throws Throwable
Description copied from interface:MethodInterceptorImplement this method to perform extra treatments before and after the invocation. Polite implementations would certainly like to invokeJoinpoint.proceed().- Specified by:
invokein interfaceMethodInterceptor- Parameters:
mi- the method invocation joinpoint- Returns:
- the result of the call to
Joinpoint.proceed(); might be intercepted by the interceptor - Throws:
Throwable- if the interceptors or the target object throws an exception