Is application context you load from .xml file is user specific level or application level, like context is once loaded for all the user? or every user has separate application context?
while using spring framework in java?
The context is application-wide, but individual beans can have narrower scopes.
The most common scopes are
Obviously, the latter two types are user-specific beans.
Reference: