Skip to content

Instantly share code, notes, and snippets.

@avevlad
Forked from ctcarrier/gist:9918087
Created October 19, 2015 17:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avevlad/dc8ba65c8e5b5367f879 to your computer and use it in GitHub Desktop.
Save avevlad/dc8ba65c8e5b5367f879 to your computer and use it in GitHub Desktop.
Joda DateTime Serializer for ReactiveMongo
import reactivemongo.bson.{BSONHandler, BSONDateTime, Macros}
import org.joda.time.format.ISODateTimeFormat
import org.joda.time.{DateTime, DateTimeZone}
package object myApp {
DateTimeZone.setDefault(DateTimeZone.UTC)
implicit object BSONDateTimeHandler extends BSONHandler[BSONDateTime, DateTime] {
val fmt = ISODateTimeFormat.dateTime()
def read(time: BSONDateTime) = new DateTime(time.value)
def write(jdtime: DateTime) = BSONDateTime(jdtime.getMillis)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment