Pessoal, estou tentando exibir os dados na tela a partir da seguinte tela a baixo, mas não vem nada.
Estou fazendo certo na minha pagina jsf?
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.prime.com.tr/ui"
xmlns:f="http://java.sun.com/jsf/core">
<h:head>
<title>Acompanhamento Cliente - SAPJ</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="./../../resources/css/newStyleCss.css" rel="stylesheet" type="text/css" />
<link href="./../../resources/css/skin.css" rel="stylesheet" type="text/css" />
</h:head>
<f:view>
<h:body>
<h:form prependId="false">
<div id="logo">
<h1>
<h:graphicImage alt="Logo" library="css" url="/resources/img/app-logo.png" />
<p>Escritório de Advocacia</p>
</h1>
</div>
<div id="geral">
<div id="menu">
<li>
<a >Início</a>
<a >Empresa</a>
<a >Serviços</a>
<a >Cliente</a>
<a >Administrador</a>
<a >Logoff</a>
</li>
</div>
</div>
<div id="acompanhamento">
<p:panel><h1 style="font-weight: bold">:: Área de Acompanhamento do Cliente ::</h1></p:panel>
<br/>
<p:tabView effect="opacity"
effectDuration="normal"
onTabChangeUpdate="growl"
tabChangeListener="#{processoMBean.processoLista}"
id="acompanhaProcesso">
<p:tab title="Dados do Cliente" id="dadoscliente">
<table>
<tr>
<td width="200px" height="20px" bgcolor="#fff" style="font-weight: bold;">
<h:outputText value="Cliente:" />
</td>
<td width="790px" height="20px" bgcolor="#fff">
<h:outputText id="nome_cliente" value="#{processoMBean.nomeCliente}" />
</td>
</tr>
<tr>
<td width="200px" height="20px" bgcolor="#f5f5f5" style="font-weight: bold;">
<h:outputText value="Advogado" />
</td>
<td width="790px" height="20px" bgcolor="#f5f5f5">
<h:outputText id="nome_adv" value="#{processoMBean.advogado}" />
</td>
</tr>
<tr>
<td width="200px" height="20px" bgcolor="#fff" style="font-weight: bold;">
<h:outputText value="Objeção da Ação:" />
</td>
<td width="790px" height="20px" bgcolor="#fff">
<h:outputText id="obj_acao" value="#{processoMBean.abjacao}" />
</td>
</tr>
<tr>
<td width="200px" height="20px" bgcolor="#f5f5f5" style="font-weight: bold;">
<h:outputText value="Nº do Processo:" />
</td>
<td width="790px" height="20px" bgcolor="#f5f5f5">
<h:outputText id="num_processo" value="#{processoMBean.numprocesso}" />
</td>
</tr>
<tr>
<td width="200px" height="20px" bgcolor="#fff" style="font-weight: bold;">
<h:outputText value="Ação:" />
</td>
<td width="790px" height="20px" bgcolor="#fff">
<h:outputText id="acao" value="#{processoMBean.acao}" />
</td>
</tr>
<tr>
<td width="200px" height="20px" bgcolor="#f5f5f5" style="font-weight: bold;">
<h:outputText value="Data da Distribuição:" />
</td>
<td width="790px" height="20px" bgcolor="#f5f5f5">
<h:outputText id="dt_processo" value="#{processoMBean.dtprocesso}" />
</td>
</tr>
<tr>
<td width="200px" height="20px" bgcolor="#fff" style="font-weight: bold;">
<h:outputText value="Vara:" />
</td>
<td width="790px" height="20px" bgcolor="#fff">
<h:outputText id="vara" value="#{processoMBean.vara}" />
</td>
</tr>
<tr>
<td width="200px" height="20px" bgcolor="#f5f5f5" style="font-weight: bold;">
<h:outputText value="Fórum:" />
</td>
<td width="790px" height="20px" bgcolor="#f5f5f5">
<h:outputText id="forum" value="#{processoMBean.forum}" />
</td>
</tr>
</table>
</p:tab>
</p:tabView>
</div>
</h:form>
</h:body>
</f:view>
</html>
iniciante em jsf