Spring数据mongodb存储库语法中的@Query注释
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring数据mongodb存储库语法中的@Query注释相关的知识,希望对你有一定的参考价值。
我使用的是spring-data-MongoDB。我想在我的存储库中使用@Query
注释来使用id列表来查找数据模型对象列表,这些id是条件对象中的一个字段,它嵌套在数据模型对象中。
另外,希望只获取指定日期范围之间的文档以及限制返回指定限制的记录数。非常感谢任何帮助,谢谢。
@Repository
public interface DataModelRepository extends MongoRepository<DataModel, String>{
@Query("{'Criteria.Id' :{ $in: ?0},{'Criteria.DateTimeSearch' : { $lt: ?1, $gt: ?2 }},{$limit :?3}")
List<DataModel> findAllBySearchCriteriaId(List<Integer> ids, Date toDate, Date fromDate, int limit);
}
答案
您可以通过以下查询来实现此目的。
Page<DataModel> findByCriteria_IdInAndCriteria_DateTimeSearchBetween(
List<Integer> ids,
Date fromDate,
Date toDate,
Pageable pageable);
你不需要@Query
您可以使用类似的方法查询此方法
findByCriteria_IdInAndCriteria_DateTimeSearchBetween(...,
...,
...,
new PageRequest(0, 3);
以上是关于Spring数据mongodb存储库语法中的@Query注释的主要内容,如果未能解决你的问题,请参考以下文章
使用 Spring Data MongoDB 的 Rest API - 存储库方法不起作用
使用Spring Data MongoDB的Rest API - 存储库方法不起作用
如何使用 MongoDB 和 Spring 的存储库更新列表?