Class BeanMethodInjectionPointDependencyResolver
- java.lang.Object
-
- io.microsphere.spring.beans.factory.AbstractInjectionPointDependencyResolver
-
- io.microsphere.spring.beans.factory.BeanMethodInjectionPointDependencyResolver
-
- All Implemented Interfaces:
InjectionPointDependencyResolver
,org.springframework.beans.factory.Aware
,org.springframework.beans.factory.BeanFactoryAware
public class BeanMethodInjectionPointDependencyResolver extends AbstractInjectionPointDependencyResolver
- Since:
- 1.0.0
- Author:
- Mercy
-
-
Constructor Summary
Constructors Constructor Description BeanMethodInjectionPointDependencyResolver()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
resolve(java.lang.reflect.Field field, org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory, java.util.Set<java.lang.String> dependentBeanNames)
Resolve the bean names as the dependencies from the specifiedfield
void
resolve(java.lang.reflect.Parameter parameter, org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory, java.util.Set<java.lang.String> dependentBeanNames)
Resolve the bean names as the dependencies from the specifiedparameter
-
Methods inherited from class io.microsphere.spring.beans.factory.AbstractInjectionPointDependencyResolver
getAutowireCandidateResolver, resolve, resolve, resolveDependentBeanNameByName, resolveDependentBeanNameByName, resolveDependentBeanNameByName, resolveDependentBeanNamesByType, resolveDependentType, setBeanFactory
-
-
-
-
Method Detail
-
resolve
public void resolve(java.lang.reflect.Field field, org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory, java.util.Set<java.lang.String> dependentBeanNames)
Description copied from interface:InjectionPointDependencyResolver
Resolve the bean names as the dependencies from the specifiedfield
- Specified by:
resolve
in interfaceInjectionPointDependencyResolver
- Overrides:
resolve
in classAbstractInjectionPointDependencyResolver
- Parameters:
field
- thefield
may be an injection pointbeanFactory
-ConfigurableListableBeanFactory
dependentBeanNames
- the dependent bean names to be manipulated
-
resolve
public void resolve(java.lang.reflect.Parameter parameter, org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory, java.util.Set<java.lang.String> dependentBeanNames)
Description copied from interface:InjectionPointDependencyResolver
Resolve the bean names as the dependencies from the specifiedparameter
- Specified by:
resolve
in interfaceInjectionPointDependencyResolver
- Overrides:
resolve
in classAbstractInjectionPointDependencyResolver
- Parameters:
parameter
- the specifiedparameter
of a method or constructor was annotated by the annotationbeanFactory
-ConfigurableListableBeanFactory
dependentBeanNames
- the dependent bean names to be manipulated
-
-