| java.lang.Object org.springframework.aop.aspectj.AbstractAspectJAdvice org.springframework.aop.aspectj.AspectJAroundAdvice
AspectJAroundAdvice | public class AspectJAroundAdvice extends AbstractAspectJAdvice implements MethodInterceptor(Code) | | Spring AOP around advice (MethodInterceptor) that wraps
an AspectJ advice method. Exposes ProceedingJoinPoint.
author: Rod Johnson author: Juergen Hoeller since: 2.0 |
isAfterAdvice | public boolean isAfterAdvice()(Code) | | |
isBeforeAdvice | public boolean isBeforeAdvice()(Code) | | |
lazyGetProceedingJoinPoint | protected ProceedingJoinPoint lazyGetProceedingJoinPoint(ProxyMethodInvocation rmi)(Code) | | Return the ProceedingJoinPoint for the current invocation,
instantiating it lazily if it hasn't been bound to the thread already.
Parameters: rmi - the current Spring AOP ReflectiveMethodInvocation,which we'll use for attribute binding the ProceedingJoinPoint to make available to advice methods |
supportsProceedingJoinPoint | protected boolean supportsProceedingJoinPoint()(Code) | | |
|
|