public class GenericTypeAwareAutowireCandidateResolver extends SimpleAutowireCandidateResolver implements BeanFactoryAware
AutowireCandidateResolver that performs a full generic type
 match with the candidate's type if the dependency is declared as a generic type
 (e.g. Repository<Customer>).
 This is the base class for
 QualifierAnnotationAutowireCandidateResolver,
 providing an implementation all non-annotation-based resolution steps at this level.
| Constructor and Description | 
|---|
| GenericTypeAwareAutowireCandidateResolver() | 
| Modifier and Type | Method and Description | 
|---|---|
| protected boolean | checkGenericTypeMatch(BeanDefinitionHolder bdHolder,
                     DependencyDescriptor descriptor)Match the given dependency type with its generic type information against the given
 candidate bean definition. | 
| protected BeanFactory | getBeanFactory() | 
| protected RootBeanDefinition | getResolvedDecoratedDefinition(RootBeanDefinition rbd) | 
| protected org.springframework.core.ResolvableType | getReturnTypeForFactoryMethod(RootBeanDefinition rbd,
                             DependencyDescriptor descriptor) | 
| boolean | isAutowireCandidate(BeanDefinitionHolder bdHolder,
                   DependencyDescriptor descriptor)Determine whether the given bean definition qualifies as an
 autowire candidate for the given dependency. | 
| void | setBeanFactory(BeanFactory beanFactory)Callback that supplies the owning factory to a bean instance. | 
getLazyResolutionProxyIfNecessary, getSuggestedValue, isRequiredclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waithasQualifierpublic GenericTypeAwareAutowireCandidateResolver()
public void setBeanFactory(BeanFactory beanFactory)
BeanFactoryAwareInvoked after the population of normal bean properties
 but before an initialization callback such as
 InitializingBean.afterPropertiesSet() or a custom init-method.
setBeanFactory in interface BeanFactoryAwarebeanFactory - owning BeanFactory (never null).
 The bean can immediately call methods on the factory.BeanInitializationException@Nullable protected final BeanFactory getBeanFactory()
public boolean isAutowireCandidate(BeanDefinitionHolder bdHolder, DependencyDescriptor descriptor)
AutowireCandidateResolverThe default implementation checks
 BeanDefinition.isAutowireCandidate().
isAutowireCandidate in interface AutowireCandidateResolverisAutowireCandidate in class SimpleAutowireCandidateResolverbdHolder - the bean definition including bean name and aliasesdescriptor - the descriptor for the target method parameter or fieldBeanDefinition.isAutowireCandidate()protected boolean checkGenericTypeMatch(BeanDefinitionHolder bdHolder, DependencyDescriptor descriptor)
@Nullable protected RootBeanDefinition getResolvedDecoratedDefinition(RootBeanDefinition rbd)
@Nullable protected org.springframework.core.ResolvableType getReturnTypeForFactoryMethod(RootBeanDefinition rbd, DependencyDescriptor descriptor)