类 InjectionPointDependencyResolvers
- java.lang.Object
-
- io.microsphere.spring.beans.factory.InjectionPointDependencyResolvers
-
- 所有已实现的接口:
InjectionPointDependencyResolver
public class InjectionPointDependencyResolvers extends java.lang.Object implements InjectionPointDependencyResolver
CompositeInjectionPointDependencyResolver
- 从以下版本开始:
- 1.0.0
- 作者:
- Mercy
-
-
构造器概要
构造器 构造器 说明 InjectionPointDependencyResolvers(java.lang.Iterable<InjectionPointDependencyResolver> resolvers)
InjectionPointDependencyResolvers(org.springframework.beans.factory.BeanFactory beanFactory)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 void
resolve(java.lang.reflect.Constructor constructor, org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory, java.util.Set<java.lang.String> dependentBeanNames)
Resolve the bean names as the dependencies from the specifiedconstructor
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.Method method, org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory, java.util.Set<java.lang.String> dependentBeanNames)
Resolve the bean names as the dependencies from the specifiedmethod
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
-
-
-
构造器详细资料
-
InjectionPointDependencyResolvers
public InjectionPointDependencyResolvers(org.springframework.beans.factory.BeanFactory beanFactory)
-
InjectionPointDependencyResolvers
public InjectionPointDependencyResolvers(java.lang.Iterable<InjectionPointDependencyResolver> resolvers)
-
-
方法详细资料
-
resolve
public void resolve(java.lang.reflect.Field field, org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory, java.util.Set<java.lang.String> dependentBeanNames)
从接口复制的说明:InjectionPointDependencyResolver
Resolve the bean names as the dependencies from the specifiedfield
- 指定者:
resolve
在接口中InjectionPointDependencyResolver
- 参数:
field
- thefield
may be an injection pointbeanFactory
-ConfigurableListableBeanFactory
dependentBeanNames
- the dependent bean names to be manipulated
-
resolve
public void resolve(java.lang.reflect.Method method, org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory, java.util.Set<java.lang.String> dependentBeanNames)
从接口复制的说明:InjectionPointDependencyResolver
Resolve the bean names as the dependencies from the specifiedmethod
- 指定者:
resolve
在接口中InjectionPointDependencyResolver
- 参数:
method
- themethod
may be an injection pointbeanFactory
-ConfigurableListableBeanFactory
dependentBeanNames
- the dependent bean names to be manipulated
-
resolve
public void resolve(java.lang.reflect.Constructor constructor, org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory, java.util.Set<java.lang.String> dependentBeanNames)
从接口复制的说明:InjectionPointDependencyResolver
Resolve the bean names as the dependencies from the specifiedconstructor
- 指定者:
resolve
在接口中InjectionPointDependencyResolver
- 参数:
constructor
- theconstructor
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)
从接口复制的说明:InjectionPointDependencyResolver
Resolve the bean names as the dependencies from the specifiedparameter
- 指定者:
resolve
在接口中InjectionPointDependencyResolver
- 参数:
parameter
- the specifiedparameter
of a method or constructor was annotated by the annotationbeanFactory
-ConfigurableListableBeanFactory
dependentBeanNames
- the dependent bean names to be manipulated
-
-