*/
protected void handleProprtyAnnotations(Annotation[] annotations, Class validatedClass, PropertyDescriptor descriptor, MutableBeanValidationConfiguration configuration) {
for (Annotation annotation : annotations) {
PropertyValidationAnnotationHandler handler = handlerRegistry.findPropertyHanlder(annotation, validatedClass, descriptor);
if (handler != null) {
handler.handleAnnotation(annotation, validatedClass, descriptor, configuration);
}
}
}
protected void initContext(Object object) throws Exception {