Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用休眠模板(Spring orm)从数据库中获取最新的 5 行。我发现可以为此使用标准。但我不知道如何在标准中指定有限的行数(5)。请帮我解决一下这个。
您需要使用表的属性来识别最新的 5 行,让我们假设一些“id”属性,该属性会随着每条新记录的增加而增加。话虽如此,您可以设置排序 asc/desc 然后限制结果。
前任:
criteria.addOrder(Order.desc("id")); criteria.setMaxResults(5);
更新您可以在方案中使用的属性的条件。
希望能帮助到你!