程序包 infra.aop
接口 InterceptorChainFactory
- 所有已知实现类:
DefaultInterceptorChainFactory
public interface InterceptorChainFactory
Factory interface for advisor chains.
- 从以下版本开始:
- 4.0
- 作者:
- Rod Johnson, Juergen Hoeller, Harry Yang
-
字段概要
字段 -
方法概要
修饰符和类型方法说明getInterceptors(Advised config, Method method, Class<?> targetClass) Determine a list ofMethodInterceptorobjects for the given advisor chain configuration.
-
字段详细资料
-
EMPTY_INTERCEPTOR
-
-
方法详细资料
-
getInterceptors
Determine a list ofMethodInterceptorobjects for the given advisor chain configuration.- 参数:
config- the AOP configuration in the form of an Advised objectmethod- the proxied methodtargetClass- the target class (may benullto indicate a proxy without target object, in which case the method's declaring class is the next best option)- 返回:
- an array of MethodInterceptors (may also include RuntimeMethodInterceptor)
-