Class InjectionPointDependencyResolvers

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      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 specified constructor
      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 specified field
      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 specified method
      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 specified parameter
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • InjectionPointDependencyResolvers

        public InjectionPointDependencyResolvers​(org.springframework.beans.factory.BeanFactory beanFactory)
    • 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 specified field
        Specified by:
        resolve in interface InjectionPointDependencyResolver
        Parameters:
        field - the field may be an injection point
        beanFactory - 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)
        Description copied from interface: InjectionPointDependencyResolver
        Resolve the bean names as the dependencies from the specified method
        Specified by:
        resolve in interface InjectionPointDependencyResolver
        Parameters:
        method - the method may be an injection point
        beanFactory - 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)
        Description copied from interface: InjectionPointDependencyResolver
        Resolve the bean names as the dependencies from the specified constructor
        Specified by:
        resolve in interface InjectionPointDependencyResolver
        Parameters:
        constructor - the constructor may be an injection point
        beanFactory - 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 specified parameter
        Specified by:
        resolve in interface InjectionPointDependencyResolver
        Parameters:
        parameter - the specified parameter of a method or constructor was annotated by the annotation
        beanFactory - ConfigurableListableBeanFactory
        dependentBeanNames - the dependent bean names to be manipulated