我有3个测试Web应用程序,使用相同的模型和控制器,区别在于JSF会话托管bean。
应用 A 和 C 使用 JSF DataModel 来检索项目: JPA查询结果集返回一个java LIST,然后将其包装在ListDataModel中。后者的值是 PrimeFaces dataTable 显示的项目。
应用程序 B 使用Java LIST 来检索项目: JPA查询结果集返回一个java List,它是PrimeFaces 2.2.1 dataTable显示的项目的值。
应用程序B中的排序和过滤功能齐全且速度快,而在应用程序A和C中,它们是致命的。
我只想提一下,像Richfaces,OpenFaces这样的其他库的排序中的过滤使用相同的代码开箱即用。
问题还存在于PrimeFaces 3.0.0中。这是一个错误吗?
代码:
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;
}
在App 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()));
}
}
}
提前感谢您的帮助。
答案 0 :(得分:1)
这可能是PrimeFaces的错误。在使用数据模型时,我已经看到了有关DataTable排序问题的一些讨论。这是link to one of the PrimeFaces defects in their tracker。