Cannot find FacesContext异常的解决方案(java)

时间:2020-12-11 09:37:28
1: 出现此问题的原因是访问路径不正确:
    http://localhost:8080/demojsf/index.jsp
 
javax.servlet.ServletException: Cannot find FacesContext

2:解决的方法是输入web.xml配置文件当中正确的Servlet映射关系
   如:<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.faces</url-pattern>
  </servlet-mapping>
 访问路径则为:http://localhost:8080/demojsf/index.faces