Spring / Spring Interview questions II
How does Prototype scope work in spring?
Whenever you call for an instance of the prototype scoped bean, Spring will create a new instance and return it. This differs from the default singleton scope, where a single object instance is instantiated once per Spring IoC container.
More Related questions...