使用scala mongo驱动程序序列化为对象?

时间:2015-11-28 02:39:44

标签: mongodb scala

我是scala mongo驱动程序的新手,我正在尝试了解如何从Document中映射一个类?这些文档似乎都没有显示这是如何完成的。在.net驱动程序中,它就像传递泛型并具有自动映射的字段一样简单。 scala中没有类似的内容吗?

2 个答案:

答案 0 :(得分:2)

它们并不容易。通过java挖掘,我想出了这个解决方案:

import org.bson.codecs.DecoderContext
import org.bson.codecs.configuration.CodecRegistries.{fromProviders, fromRegistries}
import org.bson.codecs.configuration.CodecRegistry
import org.bson.{BsonDocumentReader, BsonDocumentWrapper}
import org.mongodb.scala.bson.codecs.{DEFAULT_CODEC_REGISTRY, Macros}
import org.mongodb.scala.bson.collection.mutable.Document

import scala.reflect.classTag

case class Person(firstName: String, lastName: String)

object MongoTest extends App {

  val personCodecProvider = Macros.createCodecProvider[Person]()
  val codecRegistry: CodecRegistry = fromRegistries(fromProviders(personCodecProvider), DEFAULT_CODEC_REGISTRY)

  val document = Document("firstName" -> "first", "lastName" -> "last")
  val bsonDocument = BsonDocumentWrapper.asBsonDocument(document, DEFAULT_CODEC_REGISTRY)

  val bsonReader = new BsonDocumentReader(bsonDocument)
  val decoderContext = DecoderContext.builder.build
  val codec = codecRegistry.get(classTag[Person].runtimeClass)
  val person: Person = codec.decode(bsonReader, decoderContext).asInstanceOf[Person]

  println(s"person: $person")
}

答案 1 :(得分:0)

使用 mongo 宏处理程序序列化和反序列化对象的示例。

import reactivemongo.api.bson.{BSON, BSONDocument, Macros}

case class Person(name:String = "SomeName", age:Int = 20)

implicit val personHandler = Macros.handler[Person]

//Serialize
val bsonPerson = BSON.writeDocument[Person](Person())

println(s"${BSONDocument.pretty(bsonPerson.getOrElse(BSONDocument.empty))}")

//Deserialize

val bsonDocumentPerson = BSONDocument("name"-> "MyNameHere", "age"->35)

val scalaObjPerson: Person = BSON.read[Person](bsonDocumentPerson).getOrElse(Person())

printf(s"Scala person obj = $scalaObjPerson")
相关问题