viswanath yadav wrote:
FacesContext object is created for entire application, and it handle multiple faces requests.
Thanks
A.Viswanath Yadav
No.
The FacesContext is created
and destroyed on
every JSF page request. In between page requests, it doesn't exist at all.
One of the more common problems people have with JSF, in fact, is that they attempt to access the FacesContext while handling a non-JSF request such as in a
servlet, non-JSF
JSP or
Struts Action. They fail on a NullPointerException.
JSF is not a "Master Control Program".