jsf没有显示字段只是文本

时间:2014-02-07 21:32:57

标签: jsf servlets jsf-2 facelets

我在IE上的jsf页面不会在firefox上显示任何内容我至少得到文本。奇怪的是,没有错误,所以我不确定是什么问题。我环顾四周寻找信息,甚至为页面添加了一个f:视图,但仍然没有。谢谢你的时间。

            <!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://xmlns.jcp.org/jsf/html"
                  xmlns:f="http://java.sun.com/jsf/core" 
                  xmlns:a4j="http://richfaces.org/a4j" >
            <f:view contentType="text/html">

            <h:head>
            <title>QC-Form</title>
            <link href="./css/styles.css" 
                  rel="stylesheet" type="text/css"/>
            </h:head>



            <h:body>
            <h1 class="title">QC Form</h1>
            <br/> <br/>

              <font face="comic sans MS" size="2" color="#33CCFF">
              <p><b>Enter the information below: </b> </p>
              </font>

            <h:form>

             <font face="comic sans MS" size="2"> 

             <h:panelGroup id="initialInfo">

                <b>Your initials: </b>  
                    <h:inputText value="#{qcFormBean.techNameValue}"/><br/>
                <br/>

                <b>Model #: </b>  
                <h:selectOneMenu value="#{qcFormBean.modelValue}">
                  <f:selectItem itemValue="3600" itemLabel="3600" />
                  <f:selectItem itemValue="7200" itemLabel="7200" />
                  <f:selectItem itemValue="8300" itemLabel="8300" />
                  <f:selectItem itemValue="8400" itemLabel="8400" />
                  <f:selectItem itemValue="8500p" itemLabel="8500p" />
                  <f:selectItem itemValue="8800" itemLabel="8800" />
                  <f:selectItem itemValue="9000" itemLabel="9000" />
                  <f:selectItem itemValue="9008" itemLabel="9008" />
                  <f:selectItem itemValue="9200" itemLabel="9200" />
                  <f:selectItem itemValue="9300" itemLabel="9300" />
                </h:selectOneMenu><br/>
                 <br/>

                <b>Date : </b>
                 <h:outputText  value="#{currentDate}"/>
                <br/> <br/>


                <b>Serial #: </b>  
                    <h:inputText value="#{qcFormBean.serialValue}"/><br/>
                <br/>

                <b>Customer Name: </b>  
                    <h:inputText value="#{qcFormBean.customerNameValue}"/><br/>
                <br/>

                <b>Special Instructions: </b>  
                    <h:inputText value="#{qcFormBean.specialInstructionsValue}"/><br/>    

             </h:panelGroup>
            </font>

              <font face="comic sans MS" size="2" color="#33CCFF">
              <p><b>QC Process</b> </p>
              </font>

             <font face="comic sans MS" size="2"> 

            <h:panelGroup id="dliSerial">
             <b>1.Unit Serial number has been applied: </b>
             <h:selectOneMenu value="#{qcFormBean.unitSerialValue}">
            <f:selectItems value="#{qcFormBean.valueQcValue}"/>
            </h:selectOneMenu>
            <br/>

            </h:panelGroup>

            <br/>
            <b>2.Screen Protector has been applied: </b>
            <h:panelGroup id="dliSticker">
                <h:selectOneMenu value="#{qcFormBean.dliStickerValue}">
                  <f:selectItem itemValue="P" itemLabel="Pass or Not applicable" />
                  <f:selectItem itemValue="M" itemLabel="FAIL-Mechanical" />
                  <f:selectItem itemValue="E" itemLabel="FAIL-Electrical" />
                  <f:selectItem itemValue="C" itemLabel="FAIL-Cosmetic" />
                  <f:selectItem itemValue="S" itemLabel="FAIL-Software" />
                  <a4j:ajax event="change" execute="@this" render="perfbyDliSticker"  limitRender="true" />
                </h:selectOneMenu>
            </h:panelGroup>

            <h:panelGroup id="perfbyDlitcSticker">
                <h:selectOneMenu value="#{qcFormBean.stickerFreq}"
                rendered="#{!qcFormBean.dliStickerValue eq  'P'}">
                    <f:selectItem itemValue="A" itemLabel="Always" />                
                    <f:selectItem itemValue="O" itemLabel="Often" />
                    <f:selectItem itemValue="S" itemLabel="Seldom" />                
                </h:selectOneMenu>
            </h:panelGroup>


            <br/>
            </font>

            <h:commandButton action="#{qcFormBean.submitForm()}"/>

            </h:form>

            </h:body>

            </f:view>

            </html>

更新:右键单击firefox上的源文件确实显示原始代码显示如下:

<b>Your initials: </b>  
    <h:inputText value=""></h:inputText><br />
<br />

<b>Model #: </b>  
<h:selectOneMenu value="">
</h:selectOneMenu><br />
 <br />

我的web.xml文件包含以下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> 

2 个答案:

答案 0 :(得分:4)

根据评论中描述的症状,<f:xxx><a4j:xxx>标记由JSF正确处理,但<h:xxx>标记没有。现在,让我们看看他们的XML名称空间声明,这是所有处理开始的地方:

xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:f="http://java.sun.com/jsf/core" 
xmlns:a4j="http://richfaces.org/a4j" >

自JSF 2.2以来,已为xmlns.jcp.org XML命名空间声明了<h:xxx>域。因此,未处理的症状表明您根本没有运行JSF 2.2,而是运行较旧的JSF 2.x版本,例如2.0或2.1,它们还无法识别新的XML命名空间域。

你基本上有两种选择:

  1. 相应地修复<h:xxx> XML名称空间以匹配JSF 2.0 / 2.1规范:

    xmlns:h="http://java.sun.com/jsf/html"
    
  2. 或者,只需升级到JSF 2.2。

答案 1 :(得分:2)

这意味着你的jsf标签不会解析为普通的html。要确认这一点,如果你能看到普通的jsf标签,那么就会看到页面查看源。

标记未被解析的主要原因意味着您的请求未被Faces servlet传递。你应该在web.xml中有这样的东西

 <servlet>
     <servlet-name>Faces Servlet</servlet-name>
     <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>         
  </servlet>
  <servlet-mapping>
     <servlet-name>Faces Servlet</servlet-name>
     <url-pattern>*.xhtml</url-pattern>    
 </servlet-mapping>