Browse Source

Correctly determine and propagate validation hints to DataBinder

Issue: SPR-17073
pull/1893/head
Juergen Hoeller 8 years ago
parent
commit
3c65c17053
  1. 20
      spring-webflux/src/main/java/org/springframework/web/reactive/result/method/annotation/ModelAttributeMethodArgumentResolver.java

20
spring-webflux/src/main/java/org/springframework/web/reactive/result/method/annotation/ModelAttributeMethodArgumentResolver.java

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2017 the original author or authors. * Copyright 2002-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -271,13 +271,17 @@ public class ModelAttributeMethodArgumentResolver extends HandlerMethodArgumentR
} }
private void validateIfApplicable(WebExchangeDataBinder binder, MethodParameter parameter) { private void validateIfApplicable(WebExchangeDataBinder binder, MethodParameter parameter) {
Annotation[] annotations = parameter.getParameterAnnotations(); for (Annotation ann : parameter.getParameterAnnotations()) {
for (Annotation ann : annotations) { Validated validatedAnn = AnnotationUtils.getAnnotation(ann, Validated.class);
Validated validAnnot = AnnotationUtils.getAnnotation(ann, Validated.class); if (validatedAnn != null || ann.annotationType().getSimpleName().startsWith("Valid")) {
if (validAnnot != null || ann.annotationType().getSimpleName().startsWith("Valid")) { Object hints = (validatedAnn != null ? validatedAnn.value() : AnnotationUtils.getValue(ann));
Object hints = (validAnnot != null ? validAnnot.value() : AnnotationUtils.getValue(ann)); if (hints != null) {
Object hintArray = (hints instanceof Object[] ? (Object[]) hints : new Object[] {hints}); Object[] validationHints = (hints instanceof Object[] ? (Object[]) hints : new Object[] {hints});
binder.validate(hintArray); binder.validate(validationHints);
}
else {
binder.validate();
}
} }
} }
} }

Loading…
Cancel
Save