(De)Serialize DateTime (Joda) with Jackson
问题 I am building a REST webservice. Some classes have an attribute of type DateTime (JodaTime). When sending this object to my client (Javascript), my object private DateTime date; is transformed to { date: { chronology: {}, millis: 1487289600000 } } The problem is that I have an error when sending this object back to the server because I cannot instantiate chronology I would like to have something like { date: 1487289600000} - Any other format could work. Environment jackson-annotations 2.8.8