简体   繁体   中英

Deserialize JSON Array to Object with private list property using Jackson

A JSON string like:

[
  "a", "b", "c"
]

Would usually be deserialized to List<String> . But I have a class that looks like this:

public class Foo {
  private List<String> theList;

  public Foo(List<String> theList) {
      this.theList = theList;
  }

  public String toString() {
      return new ObjectMapper().writeValueAsString(theList);
  }

  // ... more methods
}

Now I want to deserialize the above JSON string into an object of class Foo like:

Foo foo = new ObjectMapper().readValue(jsonString, Foo.class);

How is that possible?

I've already tried to use @JsonCreator with the constructor but always get:

JsonMappingException: Can not deserialize instance of ... out of START_ARRAY token

With Jackson 2.4.3, this

@JsonCreator
public Foo(List<String> theList) {
    this.theList = theList;
}
...

String jsonString = "[\"a\", \"b\", \"c\"]";
Foo foo = new ObjectMapper().readValue(jsonString, Foo.class);
System.out.println(foo.getTheList());

works for me. It prints

[a, b, c]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM