gpt4 book ai didi

java - 在 Spring Data MongoDB 存储库中计数

转载 作者:IT老高 更新时间:2023-10-28 13:07:16 25 4
gpt4 key购买 nike

我想知道是否有任何机制可以在 Spring Data MongoDB 存储库中使用 count@Query 注释?我很想收到我所拥有的文件数量,而不必获取所有文件。

基本上相当于Java中的this:

db.test.find({"type":"foo"}).count 

最佳答案

使用 MongoRepository 查询模板的另一种方法:

public interface MyRepository extends MongoRepository<MyClass, String> {
Long countByLastname(String lastname);
}

http://docs.spring.io/spring-data/mongodb/docs/current/reference/html/#repositories.query-methods.details

关于java - 在 Spring Data MongoDB 存储库中计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16715010/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com