Exclude @Reflective from @AliasFor collection
Update `RuntimeHintsUtils` to skip `@Reflective` annotations when checking for `@AliasFor`. Since the `@Reflective` annotation is only used at AOT processing time, we shouldn't need a hint for it. See gh-28528
This commit is contained in:
@@ -27,6 +27,7 @@ import org.springframework.aot.hint.MemberCategory;
|
||||
import org.springframework.aot.hint.RuntimeHints;
|
||||
import org.springframework.aot.hint.TypeHint;
|
||||
import org.springframework.aot.hint.TypeHint.Builder;
|
||||
import org.springframework.aot.hint.annotation.Reflective;
|
||||
import org.springframework.core.annotation.AliasFor;
|
||||
import org.springframework.core.annotation.MergedAnnotations;
|
||||
import org.springframework.core.annotation.SynthesizedAnnotation;
|
||||
@@ -66,7 +67,7 @@ public abstract class RuntimeHintsUtils {
|
||||
}
|
||||
|
||||
private static void collectAliasedAnnotations(Set<Class<?>> seen, Set<Class<?>> types, Class<?> annotationType) {
|
||||
if (seen.contains(annotationType)) {
|
||||
if (seen.contains(annotationType) || Reflective.class.equals(annotationType)) {
|
||||
return;
|
||||
}
|
||||
seen.add(annotationType);
|
||||
|
||||
Reference in New Issue
Block a user