我不知道如何继续,但我总是得到"java.lang. net "。对于我的新JSF 1.2 web应用程序,RuntimeException: Cannot find FacesContext。肯定是我找不到的某个构型。
第一个f:
或h:
标签出现异常。一开始就有了重要的<f:view>
My 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
是这样的:
<?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,我想在页面正文中使用:
<?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模式(在您的特殊情况下是*.jsf
)时调用faces servlet。因此,当您打开index.jsp
作为http://localhost:8080/context/index.jsp
,或者依赖于<welcome-file>
设置时,那么您不会调用faces servlet,并且您确实会得到此异常。
您需要将index.jsp
作为http://localhost:8080/context/index.jsf
打开,或者将欢迎文件条目设置为index.jsf
,以便正确调用faces servlet,这样它就可以创建faces上下文,这是JSP页面中声明的JSF组件所需要的。
index.jsp
文件旁边提供一个物理上存在的、但是完全空的index.jsf
文件,以便欺骗Tomcat,使其认为index.jsf
确实作为欢迎文件存在。否则它将显示404错误,因为它事先检查了欢迎文件的物理存在。
参见:
- javax.faces。FacesException: java.lang.RuntimeException: Cannot find FacesContext
无关的具体问题,我想知道为什么你使用JSP,如果你显然已经安装了Facelets 1。并注册了它的视图处理程序。Facelets远远优于JSP。