mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-22 14:09:25 +00:00
Previously, only the first occurance of `@Reflective` and its processor was considered. When `@Reflective` appeared twice on a type due to meta-annotations or inheritance, this resulted in other processors being ignored and hints were missing as a result. This commit updates ReflectiveRuntimeHintsRegistrar to consider every occurance of `@Reflective` found in the type hierarchy, and to then use the processors from each of them. Fixes gh-29193