declarei o método no LivroBean e mesmo assim o JFS não encontra o método. HTTP Status 500 - /livro.xhtml: Property 'carregaPelaId' not found on type br.com.caelum.livraria.bean.LivroBean
type Exception report
message /livro.xhtml: Property 'carregaPelaId' not found on type br.com.caelum.livraria.bean.LivroBean
description The server encountered an internal error that prevented it from fulfilling this request.
exception
javax.servlet.ServletException: /livro.xhtml: Property 'carregaPelaId' not found on type br.com.caelum.livraria.bean.LivroBean
javax.faces.webapp.FacesServlet.service(FacesServlet.java:671)
org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
root cause
javax.el.ELException: /livro.xhtml: Property 'carregaPelaId' not found on type br.com.caelum.livraria.bean.LivroBean
com.sun.faces.facelets.compiler.AttributeInstruction.write(AttributeInstruction.java:94)
com.sun.faces.facelets.compiler.UIInstructions.encodeBegin(UIInstructions.java:82)
com.sun.faces.facelets.compiler.UILeaf.encodeAll(UILeaf.java:183)
javax.faces.component.UIComponent.encodeAll(UIComponent.java:1859)
com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:458)
com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:134)
com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:120)
com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:219)
javax.faces.webapp.FacesServlet.service(FacesServlet.java:659)
org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
classe LivroBean
package br.com.caelum.livraria.bean;
import java.io.Serializable;
import java.util.List;
import javax.faces.application.FacesMessage;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ViewScoped;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.validator.ValidatorException;
import br.com.caelum.livraria.dao.DAO;
import br.com.caelum.livraria.modelo.Autor;
import br.com.caelum.livraria.modelo.Livro;
@ManagedBean
@ViewScoped
public class LivroBean implements Serializable {
private static final long serialVersionUID = 1L;
private Livro livro = new Livro();
private Integer livroId;
private Integer autorId;
public Integer getLivroId() {
return livroId;
}
public void setLivroId(Integer livroId) {
this.livroId = livroId;
}
public void setAutorId(Integer autorId) {
this.autorId = autorId;
}
public Integer getAutorId() {
return autorId;
}
public Livro getLivro() {
return livro;
}
public List<Livro> getLivros() {
return new DAO<Livro>(Livro.class).listaTodos();
}
public List<Autor> getAutores() {
return new DAO<Autor>(Autor.class).listaTodos();
}
public List<Autor> getAutoresDoLivro() {
return this.livro.getAutores();
}
public void gravarAutor() {
Autor autor = new DAO<Autor>(Autor.class).buscaPorId(this.autorId);
this.livro.adicionaAutor(autor);
System.out.println("Escrito por: " + autor.getNome());
}
public void gravar() {
System.out.println("Gravando livro " + this.livro.getTitulo());
if (livro.getAutores().isEmpty()) {
FacesContext.getCurrentInstance().addMessage("autor",
new FacesMessage("Livro deve ter pelo menos um Autor."));
return;
}
if (this.livro.getId() == null) {
new DAO<Livro>(Livro.class).adiciona(this.livro);
} else {
new DAO<Livro>(Livro.class).atualiza(this.livro);
}
this.livro = new Livro();
}
public void carregar(Livro livro) {
System.out.println("Carregando livro " + livro.getTitulo());
this.livro = livro;
}
public void remover(Livro livro) {
System.out.println("Removendo livro " + livro.getTitulo());
new DAO<Livro>(Livro.class).remove(livro);
}
public void removerAutorDoLivro(Autor autor) {
this.livro.removeAutor(autor);
}
public String formAutor() {
System.out.println("Chamanda do formulário do Autor.");
return "autor?faces-redirect=true";
}
public void comecaComDigitoUm(FacesContext fc, UIComponent component,
Object value) throws ValidatorException {
String valor = value.toString();
if (!valor.startsWith("1")) {
throw new ValidatorException(new FacesMessage(
"ISBN deveria começar com 1"));
}
}
public void carregaPelaId() {
this.livro = new DAO<Livro>(Livro.class).buscaPorId(this.livroId);
}
}
autor.xhtml
<?xml version="1.0" encoding="UTF-8" ?>
<!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://mlns.jcp.org/jsf/html"
xmlns:f="http://mlns.jcp.org/jsf/core"
xmlns:ui="http://mlns.jcp.org/jsf/facelets">
<ui:composition template="_template.xhtml">
<f:metadata>
<f:viewParam name="livroId" value="#{livroBean.livroId}"/>
<f:viewAction action="#{livroBean.carregaPelaId}" if="#{param['livroId'] != null}"/>
</f:metadata>
<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="blur" 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" />
</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:dataTable value="#{livroBean.autoresDoLivro}" var="autor" id="tabelaAutores">
<h:column>
<h:outputText value="#{autor.nome}" />
</h:column>
<h:column>
<h:commandLink value="X" action="#{livroBean.removerAutorDoLivro(autor)}" />
</h:column>
</h:dataTable>
<h:commandLink value="Cadastrar novo autor" action="#{livroBean.formAutor}" immediate="true"/>
</fieldset>
<h:commandButton value="Gravar" action="#{livroBean.gravar}">
<f:ajax execute="@form" render="@form :formTabelaLivros:tabelaLivros"/>
</h:commandButton>
</h:form>
<h:form id="formTabelaLivros">
<h:dataTable value="#{livroBean.livros}" var="livro" id="tabelaLivros">
<h:column>
<f:facet name="header">Titulo</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" />
</h:outputText>
</h:column>
<h:column>
<f:facet name="header">Alterar</f:facet>
<h:commandLink value="Alterar" >
<f:setPropertyActionListener target="#{livroBean.livro}" value="#{livro}" />
</h:commandLink>
</h:column>
<h:column>
<f:facet name="header">Remover</f:facet>
<h:commandLink value="Remover" action="#{livroBean.remover(livro)}">
<f:ajax execute="tabelaLivros" render="@form :formTabelaLivros"/>
</h:commandLink>
</h:column>
</h:dataTable>
</h:form>
</ui:define>
<ui:define name="texto">
Cadastro de Livros
</ui:define>
</ui:composition>
</html>