Interface InjectionPointDependencyResolver

    • Method Summary

      All Methods Instance Methods Abstract 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
    • Method Detail

      • resolve

        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
        Parameters:
        field - the field may be an injection point
        beanFactory - ConfigurableListableBeanFactory
        dependentBeanNames - the dependent bean names to be manipulated
      • resolve

        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
        Parameters:
        method - the method may be an injection point
        beanFactory - ConfigurableListableBeanFactory
        dependentBeanNames - the dependent bean names to be manipulated
      • resolve

        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
        Parameters:
        constructor - the constructor may be an injection point
        beanFactory - ConfigurableListableBeanFactory
        dependentBeanNames - the dependent bean names to be manipulated
      • resolve

        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
        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