With jackson-datatype-jsr310, I get the following result
ZonedDateTime: "2015-09-28T15:16:02.153+08:00[Asia/Taipei]"
LocalDateTime: "2015-09-28T15:16:02.153"
Date: ISODate("2015-09-28T07:16:02.153Z")
disable SerializationFeature.WRITE_DATES_AS_TIMESTAMPS
ZonedDateTime: NumberLong("1443424883968")
LocalDateTime: [ 2015, 9, 28, 15, 21, 23, 968 ]
Date: ISODate("2015-09-28T07:21:23.968Z")
Is there a way to store all datetime as ISODate?
Thanks.