Spring Bean Scopes
There are a number of bean scopes in Spring, here is a quick overview:
singleton
Only one instance of bean per spring container (Default)
prototype
New instance will be created every time been is requested
request
Single bean instance per HTTP request
Session
Single bean instance for per HTTP Session
Global Session
Single bean instance per global HTTP session.