This question already has answers here:
setMaxResults for Spring-Data-JPA annotation?

(8个答案)


12个月前关闭。





我有这个Spring JPA存储库:

@Repository
public interface MerchantUserRepository extends JpaRepository<Users, Integer> {

    Optional<Users> findByIdAndTypeIn(Integer id, String... types);
}


有什么方法可以将返回的行数限制为1?

最佳答案

您在查询中添加一个Pageable参数:

Optional<Users> findByIdAndTypeIn(Integer id, String... types, Pageable page);


对于一个结果,您可以像下面这样创建它:

Pageable firstRow = PageRequest.of(0, 1);


在这种情况下,您可以考虑为查询添加Sort对象

10-07 16:19
查看更多