SyntaxFix
Write A Post
Hire A Developer
Questions
StudentList studentList = mapper.readValue(jsonString,StudentList.class);
Change this to this one
StudentList studentList = mapper.readValue(jsonString, new TypeReference<List<Student>>(){});