Spring puts each bean instance in a scope. What is the default scope? (Choose the best answer.)
Spring supports different scopes for bean instances, such as singleton, prototype, request, session, etc. The scope determines how many instances of a bean are created and how they are shared among other components. The default scope is singleton, which means that only one instance of a bean is created per application context and it is shared by all components that depend on it.
Currently there are no comments in this discussion, be the first to comment!