Primefaces 数据表 + JPA / Hibernate 分页
如果我能以某种方式将这两个框架在分页中组合在一起,那就太酷了。
单击 Primefaces 数据表上的下一个或上一个按钮将触发查询,从而限制使用 JPA 的查询结果。
也许通过某种机制,primefaces 组件还可以从另一个 JPA 选择计数查询获取总页数?
有没有关于如何将这些投入工作的例子?
请分享您在这方面的经验。
谢谢 !
It'll be so cool if i can somehow combine both of these framework together in pagination.
Clicking on the next or prev button on the Primefaces Datatable will trigger the query, limiting the query result using JPA.
Also perhaps with some mechanism, the primefaces component can also get the total pages from another JPA select count query ?
Is there any example on how to put these into work ?
Please share your experiences on this.
Thank you !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 LazyDataModel。在此示例中,我使用 Netbeans 创建的 BackBean 和 JpaController 以及“从实体创建 JSF CRUD 页面”(BackBean 必须是 @SessionScoped)
我添加了
因为除以 0 已知问题 http://code.google.com/p/primefaces/issues/detail?id=1544
You can use a LazyDataModel. In this sample I'm using BackBean and JpaController created by Netbeans with "Create JSF CRUD pages from Entities" (BackBean must be @SessionScoped)
I've added
beacuse the division by 0 know issue http://code.google.com/p/primefaces/issues/detail?id=1544
这是我的代码,带有一列(名称列)的过滤器。
EJB
This is my code with filter for one column(name column).
EJB