Your json string is not inline with the mapped class. Change the input string
String jsonStr = "{\"students\"\:[{\"id\":\"13\",\"name\":\"Fred\"}]}";
Or change your mapped class
public class Wrapper {
private List<Student> wrapper;
//getters & setters here
}