I have a Json file that looks like this:
[ { \"field\":\"val\" }, .... ]
I have Java object representing single object and collection o
You can directly get a list through the following way:
List objs = mapper.readValue(in, new TypeReference>() {});