jsf 2——在提交表单后,很少有组件在jsf中不以初始面呈现



我正试图在质面上工作。当我试图在我的eclipse IDE中单独运行一个xhtml页面时,我的"index.xhtml"中包含的所有primeface元素都工作得很好,但是当我更新我的"web.xml"设置"index.xhtml"作为主页并执行整体项目时,元素没有正确渲染我的代码如下所示。当我提交表单并想再次重新提交另一个条目时,问题就出现了。

index.xhtml

   <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!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"`enter code here`
       xmlns:p="http://primefaces.org/ui">
    <h:head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
    <title>Visitor Information</title>
    </h:head>
    <h:body>
    <h1 align="center">Visitor information</h1>
    <p:outputLabel>
     Name:
    </p:outputLabel><p:inputText />
        form-Element 1
        form-Element 2
        form-Element 3
        form-Date element 1
        form-Data element 2
    </h:body>
    </html>

web . xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1">
  <display-name>jsfwebapp</display-name>
  <welcome-file-list>
  <welcome-file>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>
  <context-param>
    <description>State saving method: 'client' or 'server' (=default). See JSF Specification 2.5.2</description>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
  </context-param>
  <context-param>
    <param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
    <param-value>resources.application</param-value>
  </context-param>
  <listener>
    <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
  </listener>
</web-app>

我终于解决了这个问题,表单实际上是加载完美的第一次,当我提交的值,并尝试重新提交另一个记录的第二次几个元素没有加载,

我首先意识到问题是与primefaces,但实际的问题是,当表单值通过setter初始化并提交给后端时,它们实际上并没有在提交后被清除,所以过去记录的所有值再次通过getter方法重新加载到表单中。表单包含质数-面日期元素,因为它们试图加载具有先前记录的日期元素,这会产生一个错误,并且由于日期元素的错误而无法加载元素。

我所做的解决方案是清除表单值一旦他们被提交到后端数据库。

尝试:

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

index.xhtml页面应该使用Faces-Servlet

相关内容

  • 没有找到相关文章

最新更新