Browse Source
Prior to this commit, evaluating validation hints for @javax.validation.Valid caused exceptions being raised when getting the value of this annotation, which does not exist. Bypassing AnnotationUtils.getValue() in those cases can improve performance by avoiding the cost incurred by raising exceptions. See gh-26787pull/26850/head
5 changed files with 85 additions and 50 deletions
@ -0,0 +1,69 @@
@@ -0,0 +1,69 @@
|
||||
/* |
||||
* Copyright 2002-2021 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.validation.annotation; |
||||
|
||||
import java.lang.annotation.Annotation; |
||||
|
||||
import org.springframework.core.annotation.AnnotationUtils; |
||||
import org.springframework.lang.Nullable; |
||||
|
||||
/** |
||||
* Utility class for handling validation annotations. |
||||
* Mainly for internal use within the framework. |
||||
* |
||||
* @author Christoph Dreis |
||||
* @since 5.3.7 |
||||
*/ |
||||
public abstract class ValidationAnnotationUtils { |
||||
|
||||
/** |
||||
* Determine any validation hints by the given annotation. |
||||
* <p>This implementation checks for {@code @javax.validation.Valid}, |
||||
* Spring's {@link org.springframework.validation.annotation.Validated}, |
||||
* and custom annotations whose name starts with "Valid". |
||||
* @param ann the annotation (potentially a validation annotation) |
||||
* @return the validation hints to apply (possibly an empty array), |
||||
* or {@code null} if this annotation does not trigger any validation |
||||
* @since 5.3.7 |
||||
*/ |
||||
@Nullable |
||||
public static Object[] determineValidationHints(Annotation ann) { |
||||
Class<? extends Annotation> annotationType = ann.annotationType(); |
||||
String annotationName = annotationType.getName(); |
||||
if ("javax.validation.Valid".equals(annotationName)) { |
||||
return new Object[0]; |
||||
} |
||||
Validated validatedAnn = AnnotationUtils.getAnnotation(ann, Validated.class); |
||||
if (validatedAnn != null) { |
||||
Object hints = validatedAnn.value(); |
||||
return convertValidationHints(hints); |
||||
} |
||||
if (annotationType.getSimpleName().startsWith("Valid")) { |
||||
Object hints = AnnotationUtils.getValue(ann); |
||||
return convertValidationHints(hints); |
||||
} |
||||
return null; |
||||
} |
||||
|
||||
private static Object[] convertValidationHints(@Nullable Object hints) { |
||||
if (hints == null) { |
||||
return new Object[0]; |
||||
} |
||||
return (hints instanceof Object[] ? (Object[]) hints : new Object[]{hints}); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue