Java org.springframework.beans.factory.config AutowireCapableBeanFactory fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.beans.factory.config AutowireCapableBeanFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.beans.factory.config AutowireCapableBeanFactory.

The text is from its open source code.

Implementation

org.springframework.beans.factory.config.AutowireCapableBeanFactory has the following implementations.
Click this link to see all its implementation.

Field

intAUTOWIRE_NO
Constant that indicates no externally defined autowiring.
intAUTOWIRE_BY_NAME
Constant that indicates autowiring bean properties by name (applying to all bean property setters).
intAUTOWIRE_BY_TYPE
Constant that indicates autowiring bean properties by type (applying to all bean property setters).
intAUTOWIRE_CONSTRUCTOR
Constant that indicates autowiring the greediest constructor that can be satisfied (involves resolving the appropriate constructor).
intAUTOWIRE_AUTODETECT
Constant that indicates determining an appropriate autowire strategy through introspection of the bean class.

Method

ObjectapplyBeanPostProcessorsAfterInitialization(Object existingBean, String beanName)
Apply BeanPostProcessor BeanPostProcessors to the given existing bean instance, invoking their postProcessAfterInitialization methods.
ObjectapplyBeanPostProcessorsBeforeInitialization(Object existingBean, String beanName)
Apply BeanPostProcessor BeanPostProcessors to the given existing bean instance, invoking their postProcessBeforeInitialization methods.
Objectautowire(Class beanClass, int autowireMode, boolean dependencyCheck)
Instantiate a new bean instance of the given class with the specified autowire strategy.
voidautowireBean(Object existingBean)
Populate the given bean instance through applying after-instantiation callbacks and bean property post-processing (e.g.
voidautowireBeanProperties(Object existingBean, int autowireMode, boolean dependencyCheck)
Autowire the bean properties of the given bean instance by name or type.
ObjectconfigureBean(Object existingBean, String beanName)
Configure the given raw bean: autowiring bean properties, applying bean property values, applying factory callbacks such as setBeanName and setBeanFactory , and also applying all bean post processors (including ones which might wrap the given raw bean).
booleancontainsBean(String name)
Does this bean factory contain a bean definition or externally registered singleton instance with the given name?
ObjectcreateBean(Class beanClass, int autowireMode, boolean dependencyCheck)
Fully create a new bean instance of the given class with the specified autowire strategy.
TcreateBean(Class beanClass)
Fully create a new bean instance of the given class.
TgetBean(String name, Class requiredType)
Return an instance, which may be shared or independent, of the specified bean.
ObjectgetBean(String name)
Return an instance, which may be shared or independent, of the specified bean.
ObjectinitializeBean(Object existingBean, String beanName)
Initialize the given raw bean, applying factory callbacks such as setBeanName and setBeanFactory , also applying all bean post processors (including ones which might wrap the given raw bean).