I need a date format like
Tue May 31 17:46:55 +0800 2011
And the current formats I am using is
implicit val formats = Serialization.formats(NoTypeHints)
It will produce :
2011-05-31 17:46:55.0
How can I make the formats that produce string like "Tue May 31 17:46:55 +0800 2011"
?