public class DefaultAdvisorChainFactory extends Object implements AdvisorChainFactory, Serializable
Advised object. Always rebuilds each advice chain;
 caching can be provided by subclasses.| Constructor and Description | 
|---|
| DefaultAdvisorChainFactory() | 
| Modifier and Type | Method and Description | 
|---|---|
| List<Object> | getInterceptorsAndDynamicInterceptionAdvice(Advised config,
                                           Method method,
                                           Class<?> targetClass)Determine a list of  MethodInterceptorobjects
 for the given advisor chain configuration. | 
public List<Object> getInterceptorsAndDynamicInterceptionAdvice(Advised config, Method method, @Nullable Class<?> targetClass)
AdvisorChainFactoryMethodInterceptor objects
 for the given advisor chain configuration.getInterceptorsAndDynamicInterceptionAdvice in interface AdvisorChainFactoryconfig - the AOP configuration in the form of an Advised objectmethod - the proxied methodtargetClass - the target class (may be null to indicate a proxy without
 target object, in which case the method's declaring class is the next best option)