java - joda datetime deserialization -


i trying figure out if joda datetime serializable (when using default java serializable) or need provide own serialization implementation (using externalizable or third party serialization library). currently, tried serializing , deserializing class containing instance variable of type joda datetime serialzation exception datetime.

relevant section of class

public class testclass implements serializable {  private datetime datetime;      protected datetime getdatetime() {         return datetime;     }      protected void setdatetime(datetime datetime) {         this.datetime = datetime;     } 

joda datetime serializable - error you're sharing project issue. try cleaning , building project again see if issue gets resolved. there other errors in project or after run project?


Comments

Popular posts from this blog

c# - HttpResponseMessage System.InvalidOperationException -

sql - Postgresql error: "failed to find conversion function from unknown to text" -