Fix attribute aliasing in @Reflective

See gh-28469
This commit is contained in:
Sam Brannen 2022-07-11 19:14:39 +02:00
parent 65f9106d49
commit 255a52bc7a
1 changed files with 2 additions and 0 deletions

View File

@ -33,6 +33,7 @@ import org.springframework.core.annotation.AliasFor;
* annotated element so that it can be discovered and invoked if necessary.
*
* @author Stephane Nicoll
* @author Sam Brannen
* @since 6.0
* @see SimpleReflectiveProcessor
*/
@ -45,6 +46,7 @@ public @interface Reflective {
/**
* Alias for {@link #processors()}.
*/
@AliasFor("processors")
Class<? extends ReflectiveProcessor>[] value() default SimpleReflectiveProcessor.class;
/**