ReactiveMongo Play JSON API
Members list
Concise view
Packages
package reactivemongo.play.json.compat
Implicit conversions for handler types
from reactivemongo.api.bson
to play.api.libs.json
.
Implicit conversions for handler types
from reactivemongo.api.bson
to play.api.libs.json
.
import reactivemongo.play.json.compat.bson2json._
def bar[T](br: reactivemongo.api.bson.BSONReader[T]) = {
val r: play.api.libs.json.Reads[T] = br
r
}
'''Note:''' Importing both json2bson
& bson2json
can lead to diverging implicits in Scala 2.11
(see HandlerConverterSpec211
).
Attributes
DSL for MongoDB Extended JSON syntax (v2).
DSL for MongoDB Extended JSON syntax (v2).
import play.api.libs.json.Json
import reactivemongo.play.json.compat.dsl._
Json.obj("int" -> int(1), "double" -> double(2.3D))
// {
// "int": { "$numberInt": "1" },
// "double": { "$numberDouble": "2.3" }
// }
Attributes
Implicit conversions for handler types
from play.api.libs.json
to reactivemongo.api.bson
.
Implicit conversions for handler types
from play.api.libs.json
to reactivemongo.api.bson
.
import reactivemongo.play.json.compat.json2bson._
def foo[T](jw: play.api.libs.json.OWrites[T]) = {
val w: reactivemongo.api.bson.BSONDocumentWriter[T] = jw
w
}
'''Note:''' Importing both json2bson
& bson2json
can lead to diverging implicits in Scala 2.11
(see HandlerConverterSpec211
).