public interface AdvisorAdapter
Implementing objects can create AOP Alliance Interceptors from custom advice types, enabling these advice types to be used in the Spring AOP framework, which uses interception under the covers.
There is no need for most Spring users to implement this interface; do so only if you need to introduce more Advisor or Advice types to Spring.
| 限定符和类型 | 方法和说明 |
|---|---|
MethodInterceptor |
getInterceptor(Advisor advisor)
Return an AOP Alliance MethodInterceptor exposing the behavior of
the given advice to an interception-based AOP framework.
|
boolean |
supportsAdvice(Advice advice)
Does this adapter understand this advice object?
|
boolean supportsAdvice(Advice advice)
getInterceptors method with an Advisor that
contains this advice as an argument?advice - an Advice such as a BeforeAdvicegetInterceptor(org.springframework.aop.Advisor),
BeforeAdviceMethodInterceptor getInterceptor(Advisor advisor)
Don't worry about any Pointcut contained in the Advisor; the AOP framework will take care of checking the pointcut.
advisor - the Advisor. The supportsAdvice() method must have
returned true on this object