Ao tentar remover o livro:
{javaBean.remover(livro)}: javax.el.PropertyNotFoundException: /livro.xhtml @91,71 action="#{javaBean.remover(livro)}": Target Unreachable, identifier 'javaBean' resolved to null
<?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://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="msg"/><!-- validacao do JSF para exibir msg em tela / exibe as msg de validacao aqui do f: e do Bean-->
<fieldset>
<legend>Dados do Livro</legend>
<h:panelGrid columns="1">
<h:outputLabel value="Titulo:" for="titulo" />
<h:inputText id="titulo" value="#{livroBean.livro.titulo}"
required="true" requiredMessage="Titulo obrigatorio" validatorMessage="titulo nao pode ser maior q 10 caracteres">
<f:validateLength maximum="10"/>
<f:ajax event="blur" render="msg"/>
</h:inputText>
<h:outputLabel value="ISBN:" for="isbn" />
<h:inputText id="isbn" value="#{livroBean.livro.isbn}" validator="#{livroBean.comecaComDigitoUm}" > <!-- validacao por metodo -->
<f:ajax event="keyup" render="msg"/>
</h:inputText>
<h:outputLabel value="Preço:" for="preco" />
<h:inputText id="preco" value="#{livroBean.livro.preco}" >
<f:validateDoubleRange minimum="1.00" maximum="1000.00"></f:validateDoubleRange>
</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"/> <!-- podemos substituir o timezone aqui pelo web.xml -->
</h:inputText>
</h:panelGrid>
</fieldset>
<fieldset>
<legend>Dados do Autor</legend>
<h:outputLabel value="Selecione o Autor: " for="autor"/>
<h:selectOneMenu value="#{livroBean.autorId}" id="autor"> <!-- id para o ajax -->
<f:selectItems value="#{livroBean.autores}" var="autor" itemLabel="#{autor.nome}" itemValue="#{autor.id}"/> <!-- recebe o id do autor para poder gravar depois em banco -->
</h:selectOneMenu>
<h:commandButton value="Gravar Autor" action="#{livroBean.gravarAutor}">
<f:ajax execute="autor" render="tabelaAutor"/>
</h:commandButton>
<br />
<h:commandLink value="Cadastrar novo autor" action="#{livroBean.formAutor}" immediate="true"/><!-- action nome da pag sem xhtml - imediate pulamos a fase de validacao-->
<h:dataTable value="#{livroBean.autoresDoLivro}" var="autor" id="tabelaAutor"><!-- lista os autores da lista Livro-->
<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 :formTabelaLivros:tabelaLivros"></f:ajax><!-- execute o form inteiro, render = oq será atualizado e dois pontos para procurar fora do proprio form-->
</h:commandButton>
</h:form>
<h:form id="formTabelaLivros">
<h:dataTable id="tabelaLivros" value="#{livroBean.livros}" var="livro">
<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">Preco</f:facet>
<h:outputText value="#{livro.preco}">
<f:convertNumber type="currency" pattern="#0.00" currencySymbol="R$" locale="pt_BR"/>
</h:outputText>
</h:column>
<h:column>
<f:facet name="header">Data Lancamento</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:column>
<f:facet name="header">Remover</f:facet>
<h:commandLink value="remove" action="#{javaBean.remover(livro)}"/><!-- variavel do datatable -->
</h:column>
</h:dataTable>
</h:form>
</ui:define>
<ui:define name="texto">
Cadastro de Livros
</ui:define>
</ui:composition>
</html>