I saw 'application' scope in the following blog. Is it true?
Because, as per my surfing, I got to know spring has only the below 5 scopes. Please correct me if I'm wrong.
- Singleton
- Prototype
- Request
- Session
- Global Session
I saw 'application' scope in the following blog. Is it true?
Because, as per my surfing, I got to know spring has only the below 5 scopes. Please correct me if I'm wrong.
application Scopes a single bean definition to the lifecycle of a ServletContext. Only valid in the context of a web-aware Spring ApplicationContext.
Follow the link for more details: http://docs.spring.io/spring/docs/current/spring-framework-reference/htmlsingle/#beans-factory-scopes
There is a section on the official doc which is related to the bean scopes:
Basically, they define the next:
Furthermore, as Spring 3.0 exists other scope thread scope but is not registered by default, moreover you could even create your own scope:
There is a section which explains how to define your custom scope:
Respect to
Application scope
, they define it as next:It also explains the difference between a Spring singleton bean:
So in case you are looking to use with XML:
Or annotation: