SessionContext
Provides access to information about stateful and stateless sessions.
To process a single request, consider using AttributesContext to transfer transient state between components and prevent IG from creating additional sessions.
IG automatically provides access to the session
field through the
session
bindings in expressions. For example, to access a username with an
expression, use ${session.username}
instead of
${contexts.session.session.username}
Properties
The context is named session
, and is accessible at ${contexts.session}
.
The context has the following properties:
"session"
: map-
A map of attributes that are name-value pairs of the format
Map<String, Object>
.Any object type can be stored in the session.