Thanks. It helped. I used it with
String content = new String(file.getBytes());
ObjectMapper mapper = new ObjectMapper();
StudentDTO studentDTO = mapper.readValue(contect, StudentDTO);
@JsonIgnoreProperties(ignoreUnknown = true)
public class StudentDTO {
}