I am serializing an object containing a Date using the Jerkson Json library (wrapper for Jackson):
import com.codahale.jerkson.Json
import java.util.Date
case class JTest(
val dTest: Date
)
val jt = new JTest(new Date())
println(Json.generate(jt))
Which results in:
{"dTest":1353576079168}
Is there any way I can specify the format or override the generating function?
I realize that Json doesn't have a proper Date type, so the output (unix time in millis) is "correct". I'd like to have my Dates serialized as strings in the ISO 8601 (with time/timezone) format: 2007-04-05T01:12:22+0100, as it's easily parsed and human readable. Date's toString spits out Thu Nov 22 10:27:54 CET 2012.