在springboot中使用mongodb
- 简单查询
mongoTemplate.find(
new Query(
new Criteria()
.and("hasPush").is(null)
.and("orgName").ne(null)
)
.limit(pushNum)
,CollectPlugInvoice1stEntity.class
);
- 创建索引
db.temp_705_alluser.createIndex({
"userId":1
},{background: true})
- 查看索引
db.temp_705_alluser.getIndexes();