gpt4 book ai didi

java - :inputText -Field is visible?

转载 作者:行者123 更新时间:2023-12-01 15:23:55 24 4
gpt4 key购买 nike

我正在使用 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:input 没有可见性元素?

提前致以问候和感谢

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>

最佳答案

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

如果您通过/page.xhtml打开页面,然后 FacesServlet显然没有映射到 *.xhtml ,但是在*.jsf上或者是其他东西。您需要相应地更改浏览器地址栏中的 URL,以完全匹配指定的 URL 模式,或者相应地修复映射。

关于java - :inputText -Field is visible?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10461238/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com