The http-session is stored in SessionMap, which is one of the other context maps, stored in the context of the action by the dispatcher when serving the request. A session map is a wrapper for an http session object, and operations such as get/ putare synchronized using the http session object monitor. It just synchronizes access to the attributes of the http session, however it provides an implementation Map.
source
share