5

我很难让用户知道PrimeFaces LazyDataModel#load方法中发生的异常。

我正在从数据库中加载数据,当出现异常时,我不知道如何通知用户。

我尝试添加FacesMessageFacesContext,但 Growl 组件上未显示消息,即使 Growl 设置为autoUpdate="true"

使用PrimeFaces 3.3

4

1 回答 1

3

它不起作用,因为load()在 Render Response 阶段调用了方法(您可以通过打印检查这一点FacesContext.getCurrentInstance().getCurrentPhaseId()),此时所有消息都已被处理。

对我有用的唯一解决方法是在 DataTable 的“页面”事件侦听器中加载数据。

html:

<p:dataTable value="#{controller.model}" binding="#{controller.table}">
     <p:ajax event="page" listener="#{controller.onPagination}" />
</p:dataTable>

控制器:

private List<DTO> listDTO;
private int rowCount;
private DataTable table;

private LazyDataModel<DTO> model = new LazyDataModel<DTO>() {
        @Override
        public List<DTO> load(int first, int pageSize, String sortField,
                SortOrder sortOrder, Map<String, String> filters) {
            setRowCount(rowCount);
            return listDTO;
        }
    };

public void onPagination(PageEvent event) {
    FacesContext ctx = FacesContext.getCurrentInstance();
    Map<String, String> params = ctx.getExternalContext()
            .getRequestParameterMap();

    // You cannot use DataTable.getRows() and DataTable.getFirst() here,
    // it seems that these fields are set during Render Response phase
    // and not during Update Model phase as one can expect.

    String clientId = table.getClientId();
    int first = Integer.parseInt(params.get(clientId + "_first"));
    int pageSize = Integer.parseInt(params.get(clientId + "_rows"));

    try {
        listDTO = DAO.query(first, pageSize);
        rowCount = DAO.getRowCount();
    } catch (SQLException e) {
        ctx.addMessage(null,
                new FacesMessage(FacesMessage.SEVERITY_ERROR,
                    "SQL error",
                    "SQL error"));
    }
}

希望这可以帮助。

于 2012-08-02T08:07:24.850 回答