open class SimpleAutowireCandidateResolver : AutowireCandidateResolver
AutowireCandidateResolver implementation to use when no annotation support is available. This implementation checks the bean definition only.
Author
Mark Fisher
Author
Juergen Hoeller
Since
2.5
SimpleAutowireCandidateResolver()
AutowireCandidateResolver implementation to use when no annotation support is available. This implementation checks the bean definition only. |
open fun getLazyResolutionProxyIfNecessary(descriptor: DependencyDescriptor, beanName: String): Any |
|
open fun getSuggestedValue(descriptor: DependencyDescriptor): Any |
|
open fun isAutowireCandidate(bdHolder: BeanDefinitionHolder, descriptor: DependencyDescriptor): Boolean |
|
open fun isRequired(descriptor: DependencyDescriptor): Boolean |
open class GenericTypeAwareAutowireCandidateResolver : SimpleAutowireCandidateResolver, BeanFactoryAware
Basic 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 org.springframework.beans.factory.annotation.QualifierAnnotationAutowireCandidateResolver, providing an implementation all non-annotation-based resolution steps at this level. |