Strano! La mia Intellij IDEA 12 non ha riconosciuto l'importazione e quando ho ottimizzato le importazioni
import play.modules.reactivemongo.json.BSONFormats._
è stato rimosso che ha creato l'errore.
Si potrebbe anche creare un oggetto Format personalizzato per tradurre BSONObjectID in json.
implicit object BSONObjectIDFormat extends Format[BSONObjectID] {
def writes(objectId: BSONObjectID): JsValue = JsString(objectId.toString())
def reads(json: JsValue): JsResult[BSONObjectID] = json match {
case JsString(x) => {
val maybeOID: Try[BSONObjectID] = BSONObjectID.parse(x)
if(maybeOID.isSuccess) JsSuccess(maybeOID.get) else {
JsError("Expected BSONObjectID as JsString")
}
}
case _ => JsError("Expected BSONObjectID as JsString")
}
}
Ma in questo caso basta l'importazione.