I have a String with the following value:
[{"key1":"value11", "key2":"value12"},{"key1":"value21", "key2":"value22"}]
And the following class:
public class SomeClass { private String key1; private String key2; }
And I want to List<SomeClass> it on a List<SomeClass> or SomeClass[]
What is the easiest way to do this using Jackson ObjectMapper ?
java json jackson
mmutilva Aug 30 '11 at 16:01 2011-08-30 16:01
source share