继承我的menuitem的代码:
<p:menuitem value="Listar ocorrências" url="/ocorrencia/listaOcorrencia.xhtml" actionListener="#{ocorrenciaBean.buscarTodas()}" ajax="false"/>
继承我的bean的代码:
public String buscarTodas(){
try {
ocorrencias = ocorrenciaService.buscarOcorrencias(null);
} catch (Exception e) {
e.printStackTrace();
}
return "ocorrencia/listaOcorrencia.xhtml";
}
它应该从我的数据库返回所有ocorrencias
(DAO正常工作),但它没有调用该方法。