11

I have a simple json message with some fields, and want to map it to a java object using spring-web.

Problem: my target classes fields are named differently than int he json response. How can I anyhow map them to the object without having to rename the fields in java?

Is there some annotation that could be placed here?

{
  "message":"ok"
}

public class JsonEntity {
    //how to map the "message" json to this property?
    private String value;
}

RestTemplate rest = new RestTemplate();
rest.getForObject(url, JsonEntity.class);
1
  • 3
    @JsonProperty is what you are looking for.
    – Héctor
    Commented Apr 20, 2015 at 11:15

3 Answers 3

11

To map a JSON property to a java object with a different name use @JsonProperty annotation, and your code will be :

public class JsonEntity {
    @JsonProperty(value="message")
    private String value;
}
2

Try this:

@JsonProperty("message")
private String value;
1

In case you familiar it, you can also use Jaxb annotations to marshal/unmarshal json using Jackson

@XmlRootElement
public class JsonEntity {
   @XmlElement(name = "message")
  private String value;
}

But you must initialize your Jackson context propery. Here an example how to initialize Jackson context with Jaxb annotations.

ObjectMapper mapper = new ObjectMapper();

AnnotationIntrospector introspector = new JaxbAnnotationIntrospector();
mapper.getDeserializationConfig().setAnnotationIntrospector(introspector);
mapper.getSerializationConfig().setAnnotationIntrospector(introspector);

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