如何在 Hibernate 中有效加载记录
我有一个包含 100 万条记录、50 列的数据库。我有一个 Hibernate 的 ORM 模型。问题是我的页面大小是 200 行。但是,我只想获取 5 条记录。在不使用标准 API 的情况下如何实现它?
I have a database of one million records with 50 columns. I have an ORM model of Hibernate. The problem is that my page size is 200 rows. But, I want to fetch only 5 records. How can I achieve it without using a criteria API?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 查询类。
Use the
setMaxResults()
method from the Query class.