JSF表格没有出现

时间:2010-06-08 23:20:07

标签: jsf jsf-2

我的服务器是glassfish v3,我的浏览器是firefox 3.6.3,我使用的是Netbeans 6.8 我的问题是为什么文本字段没有显示在我的浏览器中。我只看到标签。

<?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">
            <h:head>
                <title>Lookup</title>
            </h:head>
            <h:body>
                <fieldset>
                <legend>Enter Your Customer ID</legend>
                <p>Legal ids are id001, id002, and id003.</p>
                <f:view>
                <h:form>
                    Customer ID:
                    <h:inputText value="#{bankForm.customerId}" />
                    <h:commandButton value="Show Current Balance"
                                     action="#{bankForm.findBalance}" />
                </h:form>
                </f:view>
                </fieldset>
            </h:body>
    </html>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" 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_3_0.xsd">
    <context-param>
        <param-name>javax.faces.PROJECT_STAGE</param-name>
        <param-value>Development</param-value>
    </context-param>
    <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>*.jsf</url-pattern>
    </servlet-mapping>
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>pages/customer-lookup</welcome-file>
    </welcome-file-list>
</web-app>

4 个答案:

答案 0 :(得分:14)

您需要确保请求网址(在浏览器地址栏中输入)与url-pattern的{​​{1}}匹配。即不要按http://example.com/context/page.xhtml打开该页面,而是按http://example.com/context/page.jsf打开该页面。否则,将不会调用FacesServlet,并且不会以任何方式解析具有JSF组件的XHTML页面。您只能在浏览器中看到“纯HTML”标签,如FacesServlet等等,当您在查看源中执行查看源时,您将在返回的HTML源代码中看到JSF源代码未更改浏览器。

答案 1 :(得分:8)

将此添加到您的web.xml:

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

答案 2 :(得分:2)

您遇到的问题可以在Web应用程序项目中 WEB-INF 目录中存储的 web.xml 文件中解决。您需要打开该文件并添加以下xml内容才能使页面正常运行。

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

如果您提到的目录中没有.xml文件,可以通过单击您的Web应用程序项目添加它,添加新文件然后选择标准部署描述符(web.xml)

答案 3 :(得分:0)

检查您是否在此页面上配置了Faces-Servlet