JSF EL implicit variables 

Joined:
08/13/2009
Posts:
164

November 10, 2011 12:40:47    Last update: November 10, 2011 12:41:07
The expression language defines a set of implicit objects in JSF context:

VariableDescription
facesContextThe FacesContext instance for the current request.
paramMaps a request parameter name to a single value.
paramValuesMaps a request parameter name to an array of values.
headerMaps a request header name to a single value.
headerValuesMaps a request header name to an array of values.
cookieMaps a cookie name to a single cookie.
initParamMaps a context initialization parameter name to a single value.
requestScopeMaps request-scoped variable names to their values.
sessionScopeMaps session-scoped variable names to their values.
applicationScopeMaps application-scoped variable names to their values.


The variable pageScope, which exists in JSP EL, does not exist in JSF EL.
Share |
| Comment  | Tags