gpt4 book ai didi

mongodb - Mongo-Scala-Driver:CodecConfigurationException:找不到类 immutable.Document 的编解码器

转载 作者:可可西里 更新时间:2023-11-01 09:39:08 29 4
gpt4 key购买 nike

错误信息:

org.bson.codecs.configuration.CodecConfigurationException: Can't find a codec for class org.mongodb.scala.bson.collection.immutable.Document

代码:

def queueWrite(collection: String, filter: Map[String, () => String], data: Map[String, () => String]) {
val col = collections.get(collection).get

val filterBson = Document()
filter.foreach(f => { filterBson.append(f._1, f._2.apply) })

val dataBson = Document()
data.foreach(f => { dataBson.append(f._1, f._2.apply) })

val options = new FindOneAndUpdateOptions
options.returnDocument(ReturnDocument.AFTER)
options.upsert(true)

val observer = new Observer[Document] {
override def onNext(doc: Document) = println(doc.toJson)
override def onError(e: Throwable) = e.printStackTrace
override def onComplete = println("onComplete")
}

val observable: Observable[Document] = col.findOneAndUpdate(filterBson, dataBson, options)
observable.subscribe(observer)

}

调用方式:

val filter = Map[String, () => String]("uuid", p.getUniqueId.toString)

var dataMap = Map[String, () => String]()
dataMap = dataMap.+("uuid" -> p.getUniqueId.toString)
dataMap = dataMap.+("nickname" -> p.getDisplayName)

queueWrite("players", filter, dataMap)


我尝试过使用可变文档,但后来意识到 findoneandupdate 返回的是不可变文档。我还尝试使用 BsonDocument 作为过滤器的 equal 但那个 ofc 没有效果。我不太确定从这里去哪里,任何帮助将不胜感激:)

最佳答案

private val settings = MongoClientSettings.builder
.clusterSettings(clusterSettings)
.build

我的 MongoClientSettings 之前看起来像这样,我需要将其更改为:

private val settings = MongoClientSettings.builder
.clusterSettings(clusterSettings)
.codecRegistry(MongoClient.DEFAULT_CODEC_REGISTRY)
.build

似乎 mongo 没有采用默认编解码器注册表

感谢@Ross 的帮助!

关于mongodb - Mongo-Scala-Driver:CodecConfigurationException:找不到类 immutable.Document 的编解码器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43054125/

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