public abstract class AspectJProxyUtils extends Object
Constructor and Description |
---|
AspectJProxyUtils() |
Modifier and Type | Method and Description |
---|---|
static boolean |
makeAdvisorChainAspectJCapableIfNecessary(List<Advisor> advisors)
Add special advisors if necessary to work with a proxy chain that contains AspectJ advisors:
concretely,
ExposeInvocationInterceptor at the beginning of the list. |
public static boolean makeAdvisorChainAspectJCapableIfNecessary(List<Advisor> advisors)
ExposeInvocationInterceptor
at the beginning of the list.
This will expose the current Spring AOP invocation (necessary for some AspectJ pointcut matching) and make available the current AspectJ JoinPoint. The call will have no effect if there are no AspectJ advisors in the advisor chain.
advisors
- the advisors availabletrue
if an ExposeInvocationInterceptor
was added to the list,
otherwise false