Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

joda.time.DateTime deserialization error

I tried to deserialize a class with a DateTime as attibute:

import org.joda.time.DateTime;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.datatype.joda.deser.DateTimeDeserializer;
import com.fasterxml.jackson.datatype.joda.ser.DateTimeSerializer;

class MyClass {

    private DateTime alertTimestamp;

    private String name;

    @JsonSerialize(using = DateTimeSerializer.class)
    public DateTime getAlertTimestamp() {
        return alertTimestamp;
    }

    @JsonDeserialize(using = DateTimeDeserializer.class)
    public void setAlertTimestamp(DateTime now) {
        this.alertTimestamp = now;
    }

    //...
}

But when I try tro deserialize, I have this exception:

com.fasterxml.jackson.datatype.joda.deser.DateTimeDeserializer has no default (no arg) constructor

I use that to deserialize:

ObjectMapper mapper = new ObjectMapper();
mapper.readValue(jsonData, MyClass.class);

And an example of my jsonData:

{    
    "name":"test",
    "alertTimestamp":       {"year":2014,"era":1,"dayOfMonth":24,"dayOfWeek":1,"dayOfYear":83,"weekOfWeekyear":13,"weekyear":2014,"monthOfYear":3,"yearOfEra":2014,"yearOfCentury":14,"centuryOfEra":20,"millisOfSecond":232,"millisOfDay":45143232,"secondOfMinute":23,"secondOfDay":45143,"minuteOfHour":32,"minuteOfDay":752,"hourOfDay":12,"zone":{"uncachedZone":{"cachable":true,"fixed":false,"id":"America/Los_Angeles"},"fixed":false,"id":"America/Los_Angeles"},"millis":1395689543232,"chronology":{"zone":{"uncachedZone":{"cachable":true,"fixed":false,"id":"America/Los_Angeles"},"fixed":false,"id":"America/Los_Angeles"}},"afterNow":false,"beforeNow":false,"equalNow":true}
}
like image 302
dev691 Avatar asked Mar 25 '14 18:03

dev691


1 Answers

@JsonDeserialize expects a JsonDeserializer with a no-arg constructor. The most recent version of DateTimeDeserializer does not have such a constructor.

If you've fixed the format, ie. alertTimestamp should just be a timestamp, then you could simply register the JodaModule with the ObjectMapper. It will use DateTimeDeserializer internally for DateTime fields. You can get rid of the @JsonDeserialize annotations.

mapper.registerModule(new JodaModule());

You'll need to add the jackson-datatype-joda library.

like image 75
Sotirios Delimanolis Avatar answered Oct 24 '22 14:10

Sotirios Delimanolis