Question: What is the typical Bean life cycle in Spring Bean Factory Container?Answer: Bean life cycle in Spring Bean Factory Container is as follows:► The spring container finds the bean�s definition from the XML file and instantiates the bean. ► Using the dependency injection, spring populates all of the properties as specified in the bean definition ► If the bean implements the BeanNameAware interface, the factory calls setBeanName() passing the bean�s ID. ► If the bean implements the BeanFactoryAware interface, the factory calls setBeanFactory(), passing an instance of itself. ► If there are any BeanPostProcessors associated with the bean, their post- ProcessBeforeInitialization() methods will be called. ► If an init-method is specified for the bean, it will be called. ► Finally, if there are any BeanPostProcessors associated with the bean, their postProcessAfterInitialization() methods will be called. |
Is it helpful?
Yes
No
Most helpful rated by users:
- What is Spring?
- What are the advantages of Spring framework?
- What are features of Spring?
- What are the types of Dependency Injection Spring supports?
- Please describe the basic modules of Spring Framework.