mongodb 基本使用

chier 2023-03-09 PM 917℃ 0条

在springboot中使用mongodb

  1. 简单查询

    mongoTemplate.find(
        new Query(
            new Criteria()
               .and("hasPush").is(null)
               .and("orgName").ne(null)
            )
            .limit(pushNum)
        ,CollectPlugInvoice1stEntity.class
    );
  1. 创建索引
db.temp_705_alluser.createIndex({
    "userId":1
},{background: true})

  1. 查看索引
db.temp_705_alluser.getIndexes();

标签: mongodb, springboot

非特殊说明,本博所有文章均为博主原创。

评论啦~