mongoTemplate java 判断集合存不存在
时间: 2024-01-15 11:02:46 浏览: 201
mongoTemplate工具类Dao层方法封装.zip
可以使用MongoTemplate的`collectionExists`方法来判断集合是否存在。示例如下:
```java
boolean collectionExists = mongoTemplate.collectionExists("collectionName");
if (collectionExists) {
// 集合存在
} else {
// 集合不存在
}
```
其中,`collectionName`为要判断的集合名称。
阅读全文