h:inputText -Field可见吗?

时间:2012-05-05 11:08:22

标签: java jsf netbeans jsf-2

我正在使用netbeans开发一个jsf Web应用程序。

    <fieldset>
        <div>
           <h:inputText id="firstname" value="#{loginCtrl.customer.name}" label="Name">
                  <f:validateLength minimum="3" maximum="8"/>
           </h:inputText>
        <div>
...

我写了那段代码但是当我将它部署到apache tomcat服务器时,没有显示任何字段?为什么? h:输入没有可见性元素?

问候和thx提前

PS:我的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>/faces/*</url-pattern>
    </servlet-mapping>
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>faces/register.jsf</welcome-file>
    </welcome-file-list>
</web-app>

2 个答案:

答案 0 :(得分:1)

确保您在浏览器地址栏中看到的请求网址与FacesServlet中指定的web.xml的网址格式相匹配。您可以通过在浏览器中右键单击页面并查看生成的HTML源来验证这一点。如果<h:inputText>仍然存在,那么这意味着根本没有调用FacesServlet

如果您按/page.xhtml打开该页面,则FacesServlet显然未映射到*.xhtml,而是映射到*.jsf或其他内容。您需要相应地更改浏览器地址栏中的URL以与指定的URL模式完全匹配,或者相应地修复映射。

答案 1 :(得分:0)

h:input has no visibility element?

是的,h:inputText元素具有rendered属性:

<h:inputText id="firstname" rendered="true" value="#{loginCtrl.customer.name}" 
    label="Name">
      <f:validateLength minimum="3" maximum="8"/>
</h:inputText>

但是这种说法是正确的,所以这个问题不是那个......