25 lines
864 B
Java
25 lines
864 B
Java
package com.baeldung.javaxval.afterdeserialization;
|
|
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
import com.fasterxml.jackson.databind.module.SimpleModule;
|
|
|
|
public class StudentDeserializerWithValidation {
|
|
|
|
public static Student readStudent(InputStream inputStream) throws IOException {
|
|
ObjectMapper mapper = getObjectMapperWithValidation();
|
|
return mapper.readValue(inputStream, Student.class);
|
|
}
|
|
|
|
private static ObjectMapper getObjectMapperWithValidation() {
|
|
SimpleModule validationModule = new SimpleModule();
|
|
validationModule.setDeserializerModifier(new BeanDeserializerModifierWithValidation());
|
|
ObjectMapper mapper = new ObjectMapper();
|
|
mapper.registerModule(validationModule);
|
|
return mapper;
|
|
}
|
|
|
|
}
|