如何在Spring Boot中对mongo db存储库进行自定义排序查询?

我想将此查询和@Query注释放入我的存储库中。

这是查询:

`db.report.find({'company' : 'Random'}).sort( { 'reportDate' : -1} ).limit(1)`

哪种方法是使用@Query注释实现自定义查询或使用MongoTemplate的最佳方法?

回答:

使用Mongo模板。

Criteria find = Criteria.where("company").is("Random");

Query query = new Query().addCriteria(find).with(new Sort(Sort.Direction.DESC, "reportDate"));

BasicDBObject result = mongoOperations.findOne(query, BasicDBObject.class, "collection_name");

使用Mongo存储库

Report findTopByCompanyOrderByReportDateDesc(String company)

以上是 如何在Spring Boot中对mongo db存储库进行自定义排序查询? 的全部内容, 来源链接: utcz.com/qa/404255.html

回到顶部