Bean life cycle in a Spring Bean Factory Container
Elaborate typical Bean life cycle in a Spring Bean Factory Container?
Expert
Bean life cycle in a Spring Bean Factory Container is: - The spring container discovers a bean’s definition from an XML file and instantiates the bean. - Using a dependency injection, spring fills all of properties as stated in a bean definition - If a bean implements BeanNameAware interface, then factory calls setBeanName() passing bean’s ID. - If a bean implements BeanFactoryAware interface, the factory calls setBeanFactory(), passing an instance of itself. - If there are BeanPostProcessors related with a bean, their post- ProcessBeforeInitialization() methods will be called. - If an init-method is stated for a bean then it will be called. - At last, if there are any BeanPostProcessors linked with a bean then their postProcessAfterInitialization() methods will be called.
Tell the most important feature of Java?
Is there present a discrete stack for each thread in Java?
Explain Applet life cycle with suitable example.
Elaborate JMS administered object?
Elaborate implementation of a thread pool?
Detail which models are supported by JMS?
Describe the advantages of JMS?
What do you mean by a pointer and does Java support pointers?
What do you mean by the base class of all classes?
Define the types of Dependency Injection Spring supports briefly?
18,76,764
1954335 Asked
3,689
Active Tutors
1449433
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!