FacesContext « JSP « JSF Q&A





1. JSF RuntimeException: Cannot find FacesContext    stackoverflow.com

When I write <h:outputText value="Login Name"/> tag in my JSP, I get the following exception message:

Cannot find FacesContext
Without that my JSP works fine. Here is my JSP:
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<!DOCTYPE ...

2. Request handling inside the FacesContext    stackoverflow.com

HI, This question is from previously answered question by BalusC. The excerpt of the answer as follows:

This happens only if under the covers a forward by ...

3. Hide JSPs from FacesContext    stackoverflow.com

I have a JSF application with a Servlet Filter configured for a urlPattern of /faces/*. I want to hide a JSP from faces context so that it won't go through the Servlet ...