What is difference between singleton and prototype bean?
I read this:
Basically a bean has scopes which defines their existence on the application
Singleton: means single bean definition to a single object instance per Spring IOC container.
Prototype: means a single bean definition to any number of object instances.
So what is the "object instance"?