我有一个探针,可以使用Primefaces正确渲染数据表:渲染只是一个纯文本,没有普通的Primefaces图形(没有替代颜色行等)。 我想知道为什么,因为所有其他几页都在我的网站上很好地呈现。
这是页面的XHTML
<!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"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui">
<h:body>
<h:form>
<p:dataTable var="c" value="#{viewContattoBean.contatto}">
<p:column headerText="Nome">
<h:outputText value="#{c.contattoid}" />
</p:column>
<p:column headerText="Telefono">
<h:outputText value="#{c.numero}" />
</p:column>
</p:dataTable>
</h:form>
</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>RubricaWeb</display-name>
<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>*.xhtml</url-pattern>
</servlet-mapping>
<login-config>
<auth-method>FORM</auth-method>
<form-login-config>
<form-login-page>/login.xhtml</form-login-page>
<form-error-page>/loginerror.xhtml</form-error-page>
</form-login-config>
</login-config>
<security-constraint>
<web-resource-collection>
<web-resource-name>Admins Pages</web-resource-name>
<description />
<url-pattern>/admin/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>admin</role-name>
</auth-constraint>
</security-constraint>
<security-constraint>
<web-resource-collection>
<web-resource-name>Users Pages</web-resource-name>
<description />
<url-pattern>/user/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>user</role-name>
</auth-constraint>
</security-constraint>
<welcome-file-list>
<welcome-file>index.xhtml</welcome-file>
</welcome-file-list>
</web-app>
问题,就像我已经说过的那样,我将表格视为纯文本,但内容是正确的(这就是为什么我觉得向托管bean展示无用的原因)。
谢谢你们所有人。答案 0 :(得分:0)
在您的ManagedBean中,您有注释@Named
或@ManagedBean
?在任何视图中使用都是必要的。
ViewContattoBean中的变量contatto
是List类型吗? #{viewContattoBean.contatto}
primefaces datatable的标记值需要来自datamodel的列表值或实现。