1

我有 3 个测试 Web 应用程序,使用相同的模型和控制器,区别在于 JSF 会话托管 bean。

  • 应用程序AC使用JSF DataModel来检索项目:JPA 查询结果集返回一个 java LIST,然后将其包装在 ListDataModel 中。后者的值是PrimeFaces dataTable显示的项目。

  • 应用程序B使用 Java LIST检索项目:JPA 查询结果集返回一个 java List,它是 PrimeFaces 2.2.1 数据表显示的项目的值。

应用程序 B 中的排序和过滤功能齐全且快速,而在应用程序 A 和 C 中,它们不是致命的。

我只想提一下,对 Richfaces、OpenFaces 等其他库的排序中的过滤可以使用相同的代码开箱即用。

PrimeFaces 3.0.0 中也存在该问题。这是一个错误吗?

  • 在应用 B 中:

代码:

private List<Customer> items = null;
// remainder of code here
 public List<Customer> getCustomerItems() {
        if (customerItems == null) {
            getPagingInfo();
            customerItems = jpaController.findCustomerEntities(pagingInfo.getBatchSize(), pagingInfo.getFirstItem());
        }
        return customerItems;
    }

在应用程序 A 中:

代码:

private DataModel items = null;


public PaginationHelper getPagination() {
        if (pagination == null) {
            pagination = new PaginationHelper(999999) {

                @Override
                public int getItemsCount() {
                    return getJpaController().getChimioCount();
                }

                @Override   // The list of Customers is wrapped in a JSF ListDataModel
                public DataModel createPageDataModel() {
                    return new ListDataModel(getJpaController().findCustomerEntities(getPageSize(), getPageFirstItem()));
                }
            };
        }
        return pagination;
    }

/**
* this goes for the value attribute in a datatable to list all the Customer items
*/
 public DataModel getItems() {
        if (items == null) {
            items = getPagination().createPageDataModel();
        }
        return items;
    }

在应用 C 中:

代码:

private DataModel<Project> items;
// remainder of code here

/**  
*The ListDataModel is initialized here 
*/
public void init() {
        try {
            setProjectList(doInTransaction(new PersistenceAction<List<Project>>() {

                public List<Project> execute(EntityManager em) {
                    Query query = em.createNamedQuery("project.getAll");
                    return (List<Project>) query.getResultList();
                }
            }));
        } catch (ManagerException ex) {
            Logger.getLogger(ProjectManager.class.getName()).log(Level.SEVERE, null, ex);
        }
        projectItems = new LinkedList<SelectItem>();
        projectItems.add(new SelectItem(new Project(), "-- Select one project --"));
        if (getProjectList() != null) {
            projects = new ListDataModel<Project>(getProjectList());
            for (Project p : getProjectList()) {
                projectItems.add(new SelectItem(p, p.getName()));
            }
        }
    }

预先感谢您的帮助。

4

1 回答 1

1

这可能是 PrimeFaces 错误。在使用数据模型时,我看到了一些关于 DataTable 排序问题的讨论。这是他们跟踪器中 PrimeFaces 缺陷之一的链接

于 2011-06-26T11:04:47.550 回答