Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using "Full Data Binding" in Jackson to deserialize a date in a JSON string.

The format these dates are coming is "EEE MMM dd HH:mm:ss zzz yyyy".

I'm using Jackson 1.8 and I cannot figure out how to configure the ObjectMapper so it would deserialize these Strings properly into JODA DateTime objects.

Snippet from the POJO:

private DateTime deliveryTime;

@JsonProperty("DeliveryTime")
public void setDeliveryTime(DateTime deliveryTime) {
    this.deliveryTime = deliveryTime;
}

@JsonProperty("DeliveryTime")
public DateTime getDeliveryTime() {
    return deliveryTime;
}

Thanks.

share|improve this question

1 Answer

up vote 2 down vote accepted

The simplest way to configure ObjectMapper to use specific date/time format is to call ObjectMapper.setDateFormat(...) method.

There are some preliminary plans in creating a new Joda datatype Jackson module, as that would make it much easier to add powerful new configuration; current challenge being that Jackson itself should not have hard (static) dependency to external libraries (as much as I like Joda personally!), which limits degree to which lib-specific configurability can work.

share|improve this answer
This has now been written! I've shown some example config at stackoverflow.com/a/14185077/125246 – paulcm Jan 6 at 18:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.