Spring / Spring interview questions
What is Bean Factory in Spring?
Bean Factory is like a factory class that contains collections of beans. The Bean Factory holds bean definition of multiple beans within itself and then instantiates the bean when asked by client.
Bean Factory is an actual representation of the Spring IOC container that is responsible for containing and managing the configured beans.
More Related questions...