mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
a409e0fd2c
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