1.Add jackson-databind library to your build tools like Gradle or Maven
2.in your Codes:
add:
ObjectMapper mapper = new ObjectMapper();
List studentList = new ArrayList<>();
studentList = Arrays.asList(mapper.readValue(jsonStringArray, Student[].class));