What is difference between singleton and prototype bean?
04:40 17 Apr 2013

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"?

spring dependency-injection