mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
282fee5c95
Prior to this commit, AnnotationConfigUtils looked up @Lazy as a meta-annotation at arbitrary depths (e.g., when used as a meta-meta-annotation); however, ContextAnnotationAutowireCandidateResolver only found @Lazy as a "directly present" meta-annotation. For consistency, this commit revises ContextAnnotationAutowireCandidateResolver so that it also finds @Lazy as a meta-annotation at arbitrary depths. Closes gh-36306