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

python - Referencing Data From a 2D Histogram -

c# - Derived UserControl layout resets after build -

php - MySQL LIMIT results with INNER JOIN with more than 2 tables -