Spring / Spring MVC Interview questions
What is the default scope of Spring MVC controllers?
Spring MVC controllers are singleton by default and any controller object variable/field will be shared across all the requests and sessions.
If the object variable should not be shared across requests, one can use @Scope("request") annotation above your controller class definition to create instance per request.
More Related questions...