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 Jersey + Jackson to provide REST JSON services layer for my application. The problem I have is that the default Date serialization format looks like that:

"CreationDate":1292236718456

At first i thought it is a UNIX timestamp... but it is too long for that. My client-side JS library has problems deserializing this format (it supports a bunch of different date formats but not this one i suppose). I want to change the format so that it can be consumable by my library (to ISO for example). How do I do that... I found a piece of code that could help but... where do I put it as I don't control the Jackson serializer instantiation (Jersey does)?

objectMapper.configure(SerializationConfig.Feature.WRITE_DATES_AS_TIMESTAMPS, false);

I also found this code for custom JacksonJSONProvider - the question is .. how do I make all my POJO classes use it?

@Provider
public class MessageBodyWriterJSON extends JacksonJsonProvider {

private static final String DF = "yyyy-MM-dd’T'HH:mm:ss.SSSZ";

@Override
public boolean isWriteable(Class arg0, Type arg1, Annotation[] arg2,
        MediaType arg3) {
    return super.isWriteable(arg0, arg1, arg2,
            arg3);
}
@Override
public void writeTo(Object target, Class arg1, Type arg2, Annotation[] arg3,
        MediaType arg4, MultivaluedMap arg5, OutputStream outputStream)
        throws IOException, WebApplicationException {
        SimpleDateFormat sdf=new SimpleDateFormat(DF);

    ObjectMapper om = new ObjectMapper();
    om.getDeserializationConfig().setDateFormat(sdf);
    om.getSerializationConfig().setDateFormat(sdf);
    try {
        om.writeValue(outputStream, target);
    } catch (JsonGenerationException e) {
        throw e;
    } catch (JsonMappingException e) {
        throw e;
    } catch (IOException e) {
        throw e;
    }
}


 }
share|improve this question
I found this to be a change between Jersey 1.1.5 and Jersey 1.6 - with Jersey 1.1.5, the JSON serialization looks like this: {"date":"2011-04-01T16:41:18.707+00:00"} - maybe there is a issue tracker item which gives background information – mjn Apr 1 '11 at 16:46

4 Answers

up vote 2 down vote accepted

For what it's worth, that number is standard Java timestamp (used by JDK classes); Unix stores seconds, Java milliseconds, which is why it's bit larger value.

I would hope there are some documents as to how to inject ObjectMapper into Jersey (it should follow the usual way to inject provided object). But alternatively you could override JacksonJaxRsProvider to specify/configure ObjectMapper and register that; this is what Jersey itself does, and there are multiple ways to do it.

share|improve this answer
Thanks a lot for the hint. The problem is that I cant seem to find any docs on how to do this. – adrin Dec 14 '10 at 9:38

I managed to do it in Resteasy "the JAX-RS way", so it should work on every compliant implementation like Jersey.

You must define a ContextResolver (check that Produces contains the correct content-type):

@Provider
@Produces("application/json")
public class JacksonConfigurator implements ContextResolver<ObjectMapper> {

    private ObjectMapper mapper = new ObjectMapper();

    public JacksonConfigurator() {
        SerializationConfig serConfig = mapper.getSerializationConfig();
        serConfig.setDateFormat(new SimpleDateFormat(<my format>));
        DeserializationConfig deserializationConfig = mapper.getDeserializationConfig();
        deserializationConfig.setDateFormat(new SimpleDateFormat(<my format>));
        mapper.configure(SerializationConfig.Feature.WRITE_DATES_AS_TIMESTAMPS, false);
    }

    @Override
    public ObjectMapper getContext(Class<?> arg0) {
        return mapper;
    }

}

Then you must return the newly created class in your javax.ws.rs.core.Application's getClasses

public class RestApplication extends Application {

     @Override
     public Set<Class<?>> getClasses() {
         Set<Class<?>> classes = new HashSet<Class<?>>();
         // your classes here
         classes.add(JacksonConfigurator.class);
         return classes;
      }

}

this way all operation made through jackson are given the ObjectMapper of your choice.

EDIT: I recently found out at my expenses that using RestEasy 2.0.1 (and thus Jackson 1.5.3) there is a strange behaviour if you decide to extend the JacksonConfigurator to add custom mappings.

@Provider
@Produces(MediaType.APPLICATION_JSON)
public class MyJacksonConfigurator extends JacksonConfigurator

If you just do like this (and of course put the extended class in RestApplication) the mapper of the parent class is used, that is you lose the custom mappings. To make it correctly work I had to do something that seems useless to me otherwise:

public class MyJacksonConfigurator extends JacksonConfigurator implements ContextResolver<ObjectMapper> 
share|improve this answer
+1 for not requiring dependency injection – Mark Mar 9 '11 at 5:44
4  
SimpleDateFormat is not suitable for multithreaded environments (i've seen this produce nasty bugs). Does anyone know how the config uses the SimpleDataFormat? – Brill Pappin Oct 27 '11 at 2:16
3  
Yes I know (although I'm always surprised to notice how many "experienced" developers don't know that); I looked in both the docs and the code, and the provided instance is used only as a blueprint, it is always cloned before use. Not sure this is a great choice from Jackson developers, but their API requires a DateFormat, which are not guaranteed to be threadsafe, and they take this into account by cloning them. Thanks for your good comment anyway. – Riccardo Cossu Oct 27 '11 at 8:43
I tried this but neither getClasses() nor getContext() ever gets called in my project. Any tips on what I may do wrong? Is there anything in web.xml that needs to be set as well? – Nilzor Mar 1 at 11:38
It depends on which specific implementation you use, but you have to add the javax.ws.rs.Application init-param to the rest servlet in web.xml; its value must be the name of the class that contains the getClasses() method. It's part of basic setup, check your specific implementation docs, it should be in the getting started tutorial. Or just google (or search here of course!) for the parameter name and you will find tons of examples – Riccardo Cossu Mar 7 at 17:39

To configure your own ObjectMapper, you need to inject your own class that implements ContextResolver<ObjectMapper>

Exactly how to get jersey to pick this up will kind of depend on your IOC (spring, guice). I use spring, and my class looks something like this:

import javax.ws.rs.ext.ContextResolver;
import javax.ws.rs.ext.Provider;

import org.codehaus.jackson.map.ObjectMapper;
import org.codehaus.jackson.map.SerializationConfig.Feature;
import org.codehaus.jackson.map.deser.CustomDeserializerFactory;
import org.codehaus.jackson.map.deser.StdDeserializerProvider;
import org.codehaus.jackson.map.ser.CustomSerializerFactory;
import org.springframework.stereotype.Component;

// tell spring to look for this.
@Component
// tell spring it's a provider (type is determined by the implements)
@Provider
public class ObjectMapperProvider implements ContextResolver<ObjectMapper> {
    @Override
    public ObjectMapper getContext(Class<?> type) {
        // create the objectMapper.
        ObjectMapper objectMapper = new ObjectMapper();
        // configure the object mapper here, eg.
           objectMapper.configure(SerializationConfig.Feature.WRITE_DATES_AS_TIMESTAMPS, false);
        return objectMapper;
    }
}
share|improve this answer

Re-write the MessageBodyWriterJSON with this

import javax.ws.rs.core.MediaType; 
import javax.ws.rs.ext.Provider; 

import org.codehaus.jackson.jaxrs.JacksonJsonProvider; 
import org.codehaus.jackson.map.ObjectMapper; 
import org.codehaus.jackson.map.SerializationConfig; 

@Provider 
public class MessageBodyWriterJSON extends JacksonJsonProvider { 
            public MessageBodyWriterJSON (){ 
            } 

        @Override 
            public ObjectMapper locateMapper(Class<?> type, MediaType mediaType) 
        { 
        ObjectMapper mapper = super.locateMapper(type, mediaType); 
        //DateTime in ISO format "2012-04-07T17:00:00.000+0000" instead of 'long' format 
            mapper.configure(SerializationConfig.Feature.WRITE_DATES_AS_TIMESTAMPS, false); 
            return mapper; 
        } 
}
share|improve this answer

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.