我的计算机上有一个带有数据库的MongoDB实例。其中一个集合中有几个文档,我手动将它们插入。有一个Scala应用程序可以操作数据库。有一个名为Location的案例类。
case class Location(_id: Option[ObjectId] = None, name: String) {
var visible: Boolean = false
}
这是应用程序中的MongoDB配置。
private val customCodecs = fromProviders(
classOf[Location]
)
private val javaCodecs =
fromCodecs(new LocalDateTimeDateCodec(), new LocalDateDateCodec())
private val codecRegistry =
fromRegistries(customCodecs, javaCodecs,
DEFAULT_CODEC_REGISTRY)
val dbConnection = MongoClient(dbURI)
val database: MongoDatabase = dbConnection.getDatabase(dbName).withCodecRegistry(codecRegistry)
classOf
中还有更多customCodecs
个定义,只是删除了它们。 dbURI
字符串是从配置文件中检索的。
有一个控制器端点,该端点从数据库返回所有位置。结果是这样的:
[{"_id":{},"name":"Hungary","visible":false},{"_id":{},"name":"Germany","visible":false},{"_id":{},"name":"France","visible":false},{"_id":{},"name":"Switzerland","visible":false},{"_id":{},"name":"Poland","visible":false}]
数据库数据库中的文档具有ObjectId,因为我是手动输入的,因此某些文档应具有visibility
属性true。我怀疑JSON序列化有问题,但无法弄清楚是什么。
这是查询集合的代码。
val query = collection.find().toFuture()
Await.result(query, 10.seconds).toList
service方法调用此代码并将结果传递给控制器。
import org.json4s.native.Serialization.write
val languages = enrollmentService.getAllLanguages
logger.info("GET all languages")
Ok(Json.parse(write[List[Language]](languages)))
我将json4s用于JSON序列化/反序列化。
这里可能是什么问题?
答案 0 :(得分:1)
也许您需要包括org.json4s.mongo.ObjectIdSerializer?