mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-19 19:29:03 +00:00
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