线程 "main" org.bson.codecs.configuration.CodecConfigurationException 中的异常:找不到 class org.bson.BsonElement 的编解码器

Exception in thread "main" org.bson.codecs.configuration.CodecConfigurationException: Can't find a codec for class org.bson.BsonElement

我遇到以下异常: 线程 "main" org.bson.codecs.configuration.CodecConfigurationException 中的异常:找不到 class org.bson.BsonElement 的编解码器。 在 org.bson.codecs.configuration.CodecCache.getOrThrow(CodecCache.java:46) 在 org.bson.codecs.configuration.ProvidersCodecRegistry.get(ProvidersCodecRegistry.java:63) 在 org.bson.codecs.configuration.ChildCodecRegistry.get(ChildCodecRegistry.java:51) 在 org.mongodb.scala.bson.codecs.IterableCodec.org$mongodb$scala$bson$codecs$IterableCodec$$writeValue(IterableCodec.scala:71) 在 org.mongodb.scala.bson.codecs.IterableCodec$$anonfun$writeIterable$1.apply(IterableCodec.scala:87) 在 org.mongodb.scala.bson.codecs.IterableCodec$$anonfun$writeIterable$1.apply(IterableCodec.scala:87) 在 scala.collection.immutable.List.foreach(List.scala:381) 在 scala.collection.generic.TraversableForwarder$class.foreach(TraversableForwarder.scala:35) 在 scala.collection.mutable.ListBuffer.foreach(ListBuffer.scala:45) 在 org.mongodb.scala.bson.codecs.IterableCodec.writeIterable(IterableCodec.scala:87) 在 org.mongodb.scala.bson.codecs.IterableCodec.org$mongodb$scala$bson$codecs$IterableCodec$$writeValue(IterableCodec.scala:69) 在 org.mongodb.scala.bson.codecs.IterableCodec.encode(IterableCodec.scala:58) 在 org.mongodb.scala.bson.codecs.IterableCodec.encode(IterableCodec.scala:51) 在 com.mongodb.client.model.BuildersHelper.encodeValue(BuildersHelper.java:37) 在 com.mongodb.client.model.Updates$SimpleUpdate.toBsonDocument(Updates.java:445) 在 com.mongodb.internal.operation.Operations.toBsonDocument(Operations.java:489) 在 com.mongodb.internal.operation.Operations.findOneAndUpdate(Operations.java:285) 在 com.mongodb.internal.operation.AsyncOperations.findOneAndUpdate(异步Operations.java:147)

尝试应用不同类型的编码器但没有成功。需要如何使用 BsonElement

的编解码器

下面是给出上述运行时异常的代码:

        val mongoClient= MongoClient(uriString)
        val db = mongoClient.getDatabase(databaseName)
        val collection = db.getCollection(collectionName)
        var caseDBObj = new ListBuffer[BsonElement]()
        caseDBObj += new BsonElement("Key1", new BsonString("Value1"))
        caseDBObj += new BsonElement("Key2", new BsonString("Value2"))
        caseDBObj += new BsonElement("Key3", new BsonString("Value3"))
        val observableDoc = collection
        .findOneAndUpdate(
            equal("id", "1234"), 
            addToSet("ban_case_tkt", caseDBObj)
         )
         observableStatus(observableDoc)
         val awaitedR = Await.result(observableDoc.toFuture, Duration.Inf) 

以下代码有效:

            val observableDoc = collection
            .findOneAndUpdate(
            equal("id", "1234"), 
            addToSet("ban_case_tkt", "test11"))

BsonElement 没有 Codec,这就是您遇到错误的原因。我建议只使用 BsonDocument 否则你将不得不创建并注册自定义 Codec.