SyntaxFix
Write A Post
Hire A Developer
Questions
you could also create a class which extends ArrayList:
ArrayList
public static class MyList extends ArrayList<Myclass> {}
and then use it like:
List<MyClass> list = objectMapper.readValue(json, MyList.class);