我有一个问题,它说我的连接已关闭,但我从来没有关闭它。当我试图收集时,它发生了。下面是所需的代码,我使用MongoDB的唯一其他时间是获取不同的集合并遍历一些文档。
MongoCollection<Document> playerdb = db1.getCollection("Player");
Document playerDoc = playerdb.find(eq("uuid", p.getUniqueId().toString()))
.projection(Projections.fields(Projections.include("guildName")))
.first();
playerdb.updateOne(playerDoc, Updates.set("guildName", name))
```
The error is on the .first() method.
1条答案
按热度按时间2izufjch1#
MongoClient可能会关闭。使用文档之前