使用 JSF、EJB、JPA 和 JSF 创建搜索页面所需的帮助带分页的 Primefaces
我正在尝试使用 JSF、EJB、JPA 和 JSF 制作搜索页面。 Primefaces 与 Oracle 数据库表中的分页。
该页面有两个区域(1)用于输入搜索参数的区域 (2) 带有显示搜索结果的数据表的区域。该数据表支持分页。
我使用了使用 Netbeans IDE 生成的标准代码,但不知道如何在单击搜索按钮时传递参数并根据数据表中的搜索显示结果。
请帮我提供示例代码。
提前致谢。
I am trying to make a search page using JSF, EJB, JPA & Primefaces with Pagination from an Oracle database table.
The page has two regions (1) region for entering search parameters
(2) region with a datatable showing the search result. This datatable supports pagination.
I have used standard code generated using Netbeans IDE, but dont know how to pass the parameters while clicking the search button and show the results based on the search in the datatable.
Please help me with sample code.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于输入,只需使用普通形式,就像您在 hello world 教程中创建的那样。对于结果的呈现和分页,请使用 PrimeFaces
LazyDataModel
。另请参阅他们的展示示例。For the input, just use a normal form like as you've created in a hello world tutorial. For presentation and pagination of the results, use PrimeFaces
LazyDataModel
. See also their showcase example.