<htmlxmlns="http://www.w3.org/1999/xhtml"xmlns:ui="http://java.sun.com/jsf/facelets"xmlns:f="http://java.sun.com/jsf/core"xmlns:ice="http://www.icesoft.com/icefaces/component"><ice:outputDeclarationdoctypeRoot="HTML"doctypePublic="-//W3C//DTD XHTML 1.0 Strict//EN"doctypeSystem="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/><head><!-- page title param passed in by param --><title>ICEfacesFaceletsTutorial-#{pageTitle}</title><metahttp-equiv="Content-Type"content="text/html; charset=utf-8"/><metahttp-equiv="Content-Language"content="en"/><metahttp-equiv="imagetoolbar"content="no"/><metaname="keywords"content=""/><metaname="description"content=""/><linkhref="css/default.css"rel="stylesheet"type="text/css"/></head><body><divclass="page"><divclass="header"><ui:includesrc="/WEB-INF/inc-content/header.jspx"/></div><divclass="navigation"><ui:includesrc="/WEB-INF/inc-content/navigation.jspx"/></div><divclass="content"><ui:insertname="content">DefaultContent
</ui:insert></div><divclass="footer"><ui:includesrc="/WEB-INF/inc-content/footer.jspx"/></div></div></body></html>
Eu tive o mesmo problema. Vou postar a solução encontrada no meu caso.
O problema estava no ‘#’ da linha 11 (ICEfaces Facelets Tutorial - #{pageTitle} )
Utilizar o sustenido (#) somente dentro de tags JSF, se for fora como é o caso dele, utilizar o $ (dolar) assim: ${pageTitle}
P
pretourian
E quando o problema persiste mesmo quando o # esta dentro da tag do JSF? Netbeans aponta a mensagem na linha 18
<%@pagecontentType="text/html; charset=ISO-8859-1"pageEncoding="ISO-8859-1"%><%@taglibprefix="f"uri="http://java.sun.com/jsf/core"%><%@taglibprefix="h"uri="http://java.sun.com/jsf/html"%><html><head><title>Consultadecontas-${pageTitle}</title><linkrel="stylesheet"type="text/css"href="../CSS/estilo.css"/></head><body><f:view><h:formid="frm"><h1><h:outputTextvalue="Consulta de contas"/></h1><h:messageslayout="table"showSummary="true"showDetail="false"globalOnly="true"styleClass="msgErro"infoClass="msgInfo"style="font-weight: bold"/><rich:dataTablevalue="#{consultaContaBean.contas}"var="item"width="790px"><rich:columnsortBy="#{item.tipo}"width="20px"style="text-align: center"><f:facetname="header"><h:outputTextvalue="Tipo"/></f:facet><h:graphicImagevalue="/imagens/receita.png"title="Conta a receber"rendered="#{item.tipo eq 'RECEITA'}"/><h:graphicImagevalue="/imagens/despesa.png"title="Conta a pagar"rendered="#{item.tipo eq 'DESPESA'}"/></rich:column><rich:columnsortBy="#{item.pessoa.nome}"width="200px"><f:facetname="header"><h:outputTextvalue="Pessoa"/></f:facet><h:outputTextvalue="#{item.pessoa.nome}"/></rich:column><rich:columnsortBy="#{item.descricao}"><f:facetname="header"><h:outputTextvalue="Descrição"/></f:facet><h:outputTextvalue="#{item.descricao}"/></rich:column><rich:columnsortBy="#{item.valor}"width="100px"style="text-align: center"><f:facetname="header"><h:outputTextvalue="Valor"/></f:facet><h:outputTextvalue="#{item.valor}"style="color: #{item.tipo eq 'RECEITA' ? 'blue' : 'red'}"><f:convertNumberminFractionDigits="2"currencyCode="BRL"type="currency"/></h:outputText></rich:column><rich:columnsortBy="#{item.dataVencimento}"width="100px"style="text-align: center"><f:facetname="header"><h:outputTextvalue="Vencimento"/></f:facet><h:outputTextvalue="#{item.dataVencimento}"><f:convertDateTimepattern="dd/MM/yyyy"/></h:outputText></rich:column><rich:columnwidth="80px"style="text-align: center"><f:facetname="header"><h:outputTextvalue="Aberta"/></f:facet><h:outputTextvalue="#{item.dataBaixa == null ? 'Sim' : 'Não'}"/></rich:column><rich:columnwidth="40px"style="text-align: center"><f:facetname="header"><h:outputTextvalue="Ações"/></f:facet><h:commandLinkaction="#{consultaContaBean.excluir}"><f:setPropertyActionListenervalue="#{item}"target="#{consultaContaBean.contaExclusao}"/><h:graphicImagevalue="/imagens/excluir.png"title="Excluir"styleClass="imagemLink"/></h:commandLink><h:commandLinkaction="cadastroConta"><f:setPropertyActionListenervalue="#{item}"target="#{cadastroContaBean.contaEdicao}"/><h:graphicImagevalue="/imagens/editar.png"title="Editar"styleClass="imagemLink"/></h:commandLink></rich:column></rich:dataTable><br/><h:commandLinkaction="#{cadastroContaBean.inicializar}"styleClass="linkComEspaco"><h:outputTextvalue="Nova conta"/></h:commandLink><h:commandLinkaction="menu"><h:outputTextvalue="Menu do sistema"/></h:commandLink></h:form></f:view></body></html>
D
duducordeiro_
Mostra o erro que fica mais facil de ajudar =D
E se puder mostra os teus beans e classe controladora
T
takeshi_spoow
O meu também dá o mesmo problema, tento setar os value's dos componentes à serem renderizados. Segue o meu código!