JSF menuitem actionListener无法正常工作

时间:2015-01-08 12:53:21

标签: jsf primefaces

继承我的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正常工作),但它没有调用该方法。

0 个答案:

没有答案