我不知道如何继续,但是对于新的JSF 1.2 Web应用程序,我总会收到“ java.lang.RuntimeException:找不到FacesContext”。我确定这只是我找不到的某些配置。
第一个f:或h:标记会发生异常。<f:view>一开始就已经很重要。
f:
h:
<f:view>
我的 index.jsp
index.jsp
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%> <%@page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <f:view> <html> <head> <title>MyWebsite</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> </head> <body> <div>MyContent</div> </body> </html> </f:view>
我的web.xml样子是这样的:
web.xml
<?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <servlet> <servlet-name>Faces Servlet</servlet-name> <servlet-class>javax.faces.webapp.FacesServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <context-param> <param-name>javax.faces.DEFAULT_SUFFIX</param-name> <param-value>.jsp</param-value> </context-param> <servlet-mapping> <servlet-name>Faces Servlet</servlet-name> <url-pattern>*.jsf</url-pattern> </servlet-mapping> <session-config> <session-timeout>720</session-timeout> </session-config> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app>
然后,我还有一个faces-config.xml应该在页面正文中引用我以后要使用的myBean:
faces-config.xml
<?xml version='1.0' encoding='UTF-8'?> <faces-config version="1.2" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd"> <application> <view-handler>com.sun.facelets.FaceletViewHandler</view-handler> </application> <managed-bean> <managed-bean-name>myClassName</managed-bean-name> <managed-bean-class> com.company.className </managed-bean-class> <managed-bean-scope>session</managed-bean-scope> </managed-bean> </faces-config>
我在这里想念什么?
java.lang.RuntimeException: Cannot find FacesContext
因此,JSF <f:xxx>和<h:xxx>标签抱怨FacesContext找不到。本FacesServlet是一个负责创建faces上下文。当请求URL匹配其URL模式(在您的情况下)时,将调用facesservlet *.jsf。因此,当您打开index.jspas http://localhost:8080/context/index.jsp或依赖该<welcome-file>设置时,就不会调用faceservlet,并且确实会发生此异常。
<f:xxx>
<h:xxx>
FacesContext
FacesServlet
*.jsf
http://localhost:8080/context/index.jsp
<welcome-file>
您需要打开index.jspas http://localhost:8080/context/index.jsf或将欢迎文件条目设置为index.jsf,以正确调用facesservlet,以便它可以创建在JSP页面中声明的JSF组件所需的faces上下文。
http://localhost:8080/context/index.jsf
index.jsf
但是请注意,在此JSF 1.x + Tomcat环境中,仅修复欢迎文件是不够的。您还需要在webcontent中的index.jsf文件旁边提供一个物理上存在但完全空的index.jsp文件,以欺骗index.jsf作为欢迎文件真正存在的Tomcat。否则会显示404错误,因为它会事先检查欢迎文件的物理存在。
与 具体问题 无关 ,我想知道如果您显然已经安装了Facelets1.x并注册了其视图处理程序,为什么还要使用JSP。Facelets远优于JSP。