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

javascript - how to protect a flash video from refresh? -

android - Associate same looper with different threads -

visual studio 2010 - Connect to informix database windows form application -