@ -83,6 +88,16 @@ public class ContextAnnotationAutowireCandidateResolver extends QualifierAnnotat
@@ -83,6 +88,16 @@ public class ContextAnnotationAutowireCandidateResolver extends QualifierAnnotat
@ -59,6 +60,24 @@ public class LazyAutowiredAnnotationBeanPostProcessorTests {
@@ -59,6 +60,24 @@ public class LazyAutowiredAnnotationBeanPostProcessorTests {
@ -114,7 +133,7 @@ public class LazyAutowiredAnnotationBeanPostProcessorTests {
@@ -114,7 +133,7 @@ public class LazyAutowiredAnnotationBeanPostProcessorTests {
fail("Should have thrown NoSuchBeanDefinitionException");
}
catch(NoSuchBeanDefinitionExceptionex){
// expected;
// expected
}
}
@ -131,12 +150,14 @@ public class LazyAutowiredAnnotationBeanPostProcessorTests {
@@ -131,12 +150,14 @@ public class LazyAutowiredAnnotationBeanPostProcessorTests {
fail("Should have thrown NoSuchBeanDefinitionException");
}
catch(NoSuchBeanDefinitionExceptionex){
// expected;
// expected
}
}
@ -152,9 +173,16 @@ public class LazyAutowiredAnnotationBeanPostProcessorTests {
@@ -152,9 +173,16 @@ public class LazyAutowiredAnnotationBeanPostProcessorTests {
@Autowired@Lazy
privateTestBeantestBean;
@Autowired@Lazy
privateList<TestBean>testBeans;
publicTestBeangetTestBean(){
returnthis.testBean;
}
publicList<TestBean>getTestBeans(){
returntestBeans;
}
}
@ -163,9 +191,16 @@ public class LazyAutowiredAnnotationBeanPostProcessorTests {
@@ -163,9 +191,16 @@ public class LazyAutowiredAnnotationBeanPostProcessorTests {