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

I have two Java classes that I want to serialize to JSON using Jackson:

public class User {
    public final int id;
    public final String name;

    public User(int id, String name) {
        this.id = id;
        this.name = name;
    }
}

public class Item {
    public final int id;
    public final String itemNr;
    public final User createdBy;

    public Item(int id, String itemNr, User createdBy) {
        this.id = id;
        this.itemNr = itemNr;
        this.createdBy = createdBy;
    }
}

I want to serialize an Item to this JSON:

{"id":7, "itemNr":"TEST", "createdBy":3}

with User serialized to only include the id. I will also be able to serilize all user objects to JSON like:

{"id":3, "name": "Jonas", "email": "jonas@example.com"}

So I guess that I need to write a custom serializer for Item and tried with this:

public class ItemSerializer extends JsonSerializer<Item> {

@Override
public void serialize(Item value, JsonGenerator jgen,
        SerializerProvider provider) throws IOException,
        JsonProcessingException {
    jgen.writeStartObject();
    jgen.writeNumberField("id", value.id);
    jgen.writeNumberField("itemNr", value.itemNr);
    jgen.writeNumberField("createdBy", value.user.id);
    jgen.writeEndObject();
}

}

I serialize the JSON with this code from Jackson How-to: Custom Serializers:

ObjectMapper mapper = new ObjectMapper();
SimpleModule simpleModule = new SimpleModule("SimpleModule", 
                                              new Version(1,0,0,null));
simpleModule.addSerializer(new ItemSerializer());
mapper.registerModule(simpleModule);
StringWriter writer = new StringWriter();
try {
    mapper.writeValue(writer, myItem);
} catch (JsonGenerationException e) {
    e.printStackTrace();
} catch (JsonMappingException e) {
    e.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
}

But I get this error:

Exception in thread "main" java.lang.IllegalArgumentException: JsonSerializer of type com.example.ItemSerializer does not define valid handledType() (use alternative registration method?)
    at org.codehaus.jackson.map.module.SimpleSerializers.addSerializer(SimpleSerializers.java:62)
    at org.codehaus.jackson.map.module.SimpleModule.addSerializer(SimpleModule.java:54)
    at com.example.JsonTest.main(JsonTest.java:54)

How can I use a custom Serializer with Jackson?


This is how I would do it with Gson:

public class UserAdapter implements JsonSerializer<User> {

    @Override 
    public JsonElement serialize(User src, java.lang.reflect.Type typeOfSrc,
            JsonSerializationContext context) {
        return new JsonPrimitive(src.id);
    }
}

    GsonBuilder builder = new GsonBuilder();
    builder.registerTypeAdapter(User.class, new UserAdapter());
    Gson gson = builder.create();
    String json = gson.toJson(myItem);
    System.out.println("JSON: "+json);

But I need to do it with Jackson now, since Gson doesn't have support for interfaces.

share|improve this question

5 Answers

up vote 4 down vote accepted

As mentioned, @JsonValue is a good way. But if you don't mind a custom serializer, there's no need to write one for Item but rather one for User -- if so, it'd be as simple as:

public void serialize(Item value, JsonGenerator jgen,
    SerializerProvider provider) throws IOException,
    JsonProcessingException {
  jgen.writeNumber(id);
}

Yet another possibility is to implement JsonSerializable, in which case no registration is needed.

As to error; that is weird -- you probably want to upgrade to a later version. But it is also safer to extend org.codehaus.jackson.map.ser.SerializerBase as it will have standard implementations of non-essential methods (i.e. everything but actual serialization call).

share|improve this answer
With this I get the same error: Exception in thread "main" java.lang.IllegalArgumentException: JsonSerializer of type com.example.JsonTest$UserSerilizer does not define valid handledType() (use alternative registration method?) at org.codehaus.jackson.map.module.SimpleSerializers.addSerializer(SimpleSerializer‌​s.java:62) at org.codehaus.jackson.map.module.SimpleModule.addSerializer(SimpleModule.java:54) at com.example.JsonTest.<init>(JsonTest.java:27) at com.exampple.JsonTest.main(JsonTest.java:102) – Jonas Aug 24 '11 at 9:14
I use the latest stable version of Jacskson, 1.8.5. – Jonas Aug 24 '11 at 9:15
1  
Thanks. I'll have a look... Ah! It's actually simple (although error message is not good) -- you just need to register serializer with different method, to specify class that serializer is for: if not, it must return class from handledType(). So use 'addSerializer' that takes JavaType or Class as argument and it should work. – StaxMan Aug 24 '11 at 17:25

You can put @JsonSerialize(using = CustomDateSerializer.class) over any date field of object to be serialized.

public class CustomDateSerializer extends SerializerBase<Date> {

public CustomDateSerializer() {
    super(Date.class, true);
}

@Override
public void serialize(Date value, JsonGenerator jgen, SerializerProvider provider)
        throws IOException, JsonGenerationException {
    SimpleDateFormat formatter = new SimpleDateFormat("EEE MMM dd yyyy HH:mm:ss 'GMT'ZZZ (z)");
    String format = formatter.format(value);
    jgen.writeString(format);
}

}
share|improve this answer

Use @JsonValue:

public class User {
    int id;
    String name;

    @JsonValue
    public int getId() {
        return id;
    }
}

@JsonValue only works on methods so you must add the getId method. You should be able to skip your custom serializer altogether.

share|improve this answer
1  
I think this will impact all attempts to serialise a User, making it difficult to ever expose a User's name over JSON. – user430904 Aug 24 '11 at 8:46
I can't use this solution, because I also need to be able to serialize all user objects with all fields. And this solution will break that serialization since only the id-field will be included. Is there no way to create a custom serilizer for Jackson as it is for Gson? – Jonas Aug 24 '11 at 8:57
1  
Can you comment on why JSON Views (in my answer) don't match your needs? – user430904 Aug 24 '11 at 9:47
@user: It may be a good solution, I'm reading about it and trying. – Jonas Aug 24 '11 at 10:38
1  
Note, too, that you can use @JsonSerialize(using=MySerializer.class) to indicate specific serialization for your property (field or getter), so it is only used for member property and NOT all instances of type. – StaxMan Aug 26 '11 at 4:54

If your only requirement in your custom serializer is to skip serializing the name field of User, mark it as transient. Jackson will not serialize or deserialize transient fields.

[ see also: Why does Java have transient variables? ]

share|improve this answer
Where do I mark it? In the User-class? But I will serialize all user-objects too. E.g. first only serialize all items (with only userId as a reference to the user object) and then serialize all users. In this case I can't mark the fiels in the User-class. – Jonas Aug 23 '11 at 13:29
In light of this new information, this approach won't work for you. It looks like Jackson is looking for more information for the custom serializer (handledType() method needs overriding?) – MikeG Aug 23 '11 at 13:32
Yes, but there is nothging about the handledType() method in the documentation I linked to and when Eclipse generates the methods to implement no handledType() is generated, so I'm confused. – Jonas Aug 23 '11 at 13:36
I'm not sure because the wiki you linked doesn't reference it, but in version 1.5.1 there is a handledType() and the exception seems to be complaining that method missing or invalid (base class returns null from the method). jackson.codehaus.org/1.5.1/javadoc/org/codehaus/jackson/map/… – MikeG Aug 23 '11 at 13:42

Jackson's JSON Views might be a simpler way of achieving your requirements, especially if you have some flexibility in your JSON format.

If {"id":7, "itemNr":"TEST", "createdBy":{id:3}} is an acceptable representation then this will be very easy to achieve with very little code.

You would just annotate the name field of User as being part of a view, and specify a different view in your serialisation request (the un-annotated fields would be included by default)

For example: Define the views:

public class Views {
    public static class BasicView{}
    public static class CompleteUserView{}
}

Annotate the User:

public class User {
    public final int id;

    @JsonView(Views.CompleteUserView.class)
    public final String name;

    public User(int id, String name) {
        this.id = id;
        this.name = name;
    }
}

And serialise requesting a view which doesn't contain the field you want to hide (non-annotated fields are serialised by default):

objectMapper.getSerializationConfig().setSerializationView(Views.BasicView.class);
share|improve this answer
I find the Jackson JSON Views hard to use, and can't get a good solution for this problem. – Jonas Aug 24 '11 at 11:59
Jonas - I've added an example. I found views a really nice solution for serialising the same object in different ways. – user430904 Aug 24 '11 at 12:24
Thanks for a good example. This is the best solution so far. But is there no way to get createdBy as a value instead of as an object? – Jonas Aug 24 '11 at 12:53
setSerializationView() seem to be deprecated so I used mapper.viewWriter(JacksonViews.ItemView.class).writeValue(writer, myItem); instead. – Jonas Aug 24 '11 at 14:23
I doubt it using jsonviews. A quick & dirty solution that I used before discovering views was just to copy the properties I was interested in, into a Map, and then serialise the map. – user430904 Aug 24 '11 at 15:46
show 2 more comments

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.