Solucionado (ver solução)
Solucionado
(ver solução)
2
respostas

Formulário sumiu

Não está apresentando o formulário no navegador.

Apresenta apenas: Novo Livro Dados do Livro Dados do Autor Título ISBN Preço Data

Segue código, obrigada:

<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">

<h:head/>

<h:body>
    <div id="cabecalho">
        <h:graphicImage library="img" name="logo.png"/>
            <h1>
            <ui:insert name="titulo"></ui:insert>
            </h1>
    </div>

    <div id="conteudo">
        <ui:insert name="conteudo"></ui:insert>
    </div>
</h:body>
</html>
<?xml version="1.0" encoding="UTF-8" ?>
<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">

<ui:composition template="_template.xhtml">
    <ui:define name="titulo">
    Novo Livro
    </ui:define>

    <ui:define name="conteudo">
        <h:form>
            <h:messages id="messages" />
            <fieldset>
                <legend>Dados do Livro</legend>
                <h:panelGrid columns="2">

                    <h:outputLabel value="Titulo:" for="titulo" />
                    <h:inputText id="titulo" value="#{livroBean.livro.titulo}"
                        required="true" requiredMessage="Título obrigatório"
                        validatorMessage="Título não pode ser superior a 40">
                        <f:validateLength maximum="40" />
                        <f:ajax event="blur" render="messages" />
                    </h:inputText>

                    <h:outputLabel value="ISBN:" for="isbn" />
                    <h:inputText id="isbn" value="#{livroBean.livro.isbn}"
                        validator="#{livroBean.comecaComDigitoUm}">
                        <f:ajax event="keypress" render="messages" />
                    </h:inputText>

                    <h:outputLabel value="Preço:" for="preco" />
                    <h:inputText id="preco" value="#{livroBean.livro.preco}"
                        label="Preço">
                        <f:validateDoubleRange minimum="1.0" maximum="1000.00" />
                    </h:inputText>

                    <h:outputLabel value="Data de Lançamento:" for="dataLancamento" />
                    <h:inputText id="dataLancamento"
                        value="#{livroBean.livro.dataLancamento.time}">
                        <f:convertDateTime pattern="dd/MM/yyyy HH:mm"
                            timeZone="America/Sao_Paulo" />
                    </h:inputText>
                </h:panelGrid>
            </fieldset>

            <fieldset>
                <legend>Dados do Autor</legend>

                <h:outputLabel value="Selecione Autor:" for="autor" />
                <h:selectOneMenu value="#{livroBean.autorId}" id="autor">
                    <f:selectItems value="#{livroBean.autores}" var="autor"
                        itemLabel="#{autor.nome}" itemValue="#{autor.id}" />
                </h:selectOneMenu>

                <h:commandButton value="Gravar Autor"
                    action="#{livroBean.gravarAutor}">
                    <f:ajax execute="autor" render="tabelaAutores" />
                </h:commandButton>

                <h:commandLink value="Cadastrar novo autor"
                    action="autor?faces-redirect=true" immediate="true" />

                <h:dataTable value="#{livroBean.autoresDoLivro}" var="autor"
                    id="tabelaAutores">
                    <h:column>
                        <h:outputText value="#{autor.nome}" />
                    </h:column>
                </h:dataTable>
            </fieldset>

            <h:commandButton value="Gravar" action="#{livroBean.gravar}">
                <f:ajax execute="@form" render="@form :tabelaLivros" />
            </h:commandButton>
        </h:form>

        <h:dataTable id="tabelaLivros" value="#{livroBean.livros}" var="livro">

            <h:column>
                <f:facet name="header">Título</f:facet>
                <h:outputText value="#{livro.titulo}" />
            </h:column>

            <h:column>
                <f:facet name="header">ISBN</f:facet>
                <h:outputText value="#{livro.isbn}" />
            </h:column>

            <h:column>
                <f:facet name="header">Preço</f:facet>
                <h:outputText value="#{livro.preco}" />
            </h:column>

            <h:column>
                <f:facet name="header">Data</f:facet>
                <h:outputText value="#{livro.dataLancamento.time}">
                    <f:convertDateTime pattern="dd/MM/yyyy HH:mm"
                        timeZone="America/Sao_Paulo" />
                </h:outputText>
            </h:column>
        </h:dataTable>
    </ui:define>
</ui:composition>    
</html>
2 respostas

Oi Daniella, vou ser sincero, não vi o erro. Pode colocar o projeto no github? assim eu baixo e testo.

solução!

Não reincidente após remover e colocar de novo o Tom Cat.