2

我是 Java 和 JSF 的新手。我正在使用 eclipse Indigo 和 Tomcat 6.0.3 和 JSF 2.0。

当我在浏览器中运行页面时,我只是得到一个空页面,但我可以在萤火虫中的元素仍然在 JSF 标记本身中。它不是在html中呈现..

这是我的 web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee" 
    xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
    http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    id="WebApp_ID" version="2.5">

    <display-name>ContactFormJSF</display-name>

    <context-param>
        <param-name>javax.faces.PROJECT_STAGE</param-name>
        <param-value>Development</param-value>
    </context-param>

    <welcome-file-list>
        <welcome-file>pages/index.xhtml</welcome-file>
    </welcome-file-list>

    <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.faces</url-pattern>
    </servlet-mapping>

    <context-param>
        <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
        <param-value>*.xhtml</param-value>
    </context-param>
    <session-config>
        <session-timeout>15</session-timeout>
    </session-config>
</web-app>

这是我的基本 JSF 内容

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets">

<h:head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <title>Add New User Form</title>
</h:head>
    <h:body>
        <f:view>
        <h:form>
            <h:panelGrid border="1" columns="3">
                <h:outputText value="Name"></h:outputText>
                <h:inputText value="#{userBean.name}" required="true"></h:inputText>
                <h:outputText value="D.O.B"></h:outputText>
                <h:inputText id="DOB" value="#{userBean.dob}" required="true"> </h:inputText>
                <h:outputText value="Age"></h:outputText>
                <h:inputText id="age" value="#{userBean.age}" required="true"> </h:inputText>
                <h:commandButton action="#{userBean.addUser}" value="Submit"></h:commandButton>
                <input type="reset"/>
                <h:commandButton action="#{userBean.reset}" value="Reset"> </h:commandButton>
            </h:panelGrid>
        </h:form>
        </f:view>
    </h:body>
</html>

我为此苦苦挣扎了一周,我尝试了许多在stackoverflow中记录下来的东西。

我使用的 URL 是 localhost:8080/ContactFormJSF/ 我可以在浏览器中看到上面添加的 HTML 标签,但看不到 jsf 标签。

4

1 回答 1

0

实际上,FacesServlet您的映射web.xml不包括.xhtml文件,因此您应该将正确的映射添加到配置文件中:

<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.xhtml</url-pattern>
</servlet-mapping>

另一方面,您应该检索它以让 JSF 控制器识别.xhtml您项目中的文件:

<context-param>
    <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
    <param-value>*.xhtml</param-value>
</context-param>
于 2013-09-30T09:38:33.303 回答