提交 7b54746a 编写于 作者: J Juergen Hoeller

verified choice of primary bean in case of implicit name match in a scanning...

verified choice of primary bean in case of implicit name match in a scanning plus factory method scenario (SPR-6065)
上级 1b92a2fa
...@@ -25,6 +25,7 @@ import org.springframework.beans.factory.annotation.Autowired; ...@@ -25,6 +25,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.beans.factory.config.SimpleMapScope; import org.springframework.beans.factory.config.SimpleMapScope;
import org.springframework.beans.factory.support.RootBeanDefinition; import org.springframework.beans.factory.support.RootBeanDefinition;
import org.springframework.context.annotation4.DependencyBean;
import org.springframework.context.annotation4.FactoryMethodComponent; import org.springframework.context.annotation4.FactoryMethodComponent;
import org.springframework.context.support.GenericApplicationContext; import org.springframework.context.support.GenericApplicationContext;
import org.springframework.util.ClassUtils; import org.springframework.util.ClassUtils;
...@@ -36,8 +37,8 @@ import org.springframework.util.ClassUtils; ...@@ -36,8 +37,8 @@ import org.springframework.util.ClassUtils;
public class ClassPathFactoryBeanDefinitionScannerTests extends TestCase { public class ClassPathFactoryBeanDefinitionScannerTests extends TestCase {
private static final String BASE_PACKAGE = FactoryMethodComponent.class.getPackage().getName(); private static final String BASE_PACKAGE = FactoryMethodComponent.class.getPackage().getName();
public void testSingletonScopedFactoryMethod() { public void testSingletonScopedFactoryMethod() {
GenericApplicationContext context = new GenericApplicationContext(); GenericApplicationContext context = new GenericApplicationContext();
ClassPathBeanDefinitionScanner scanner = new ClassPathBeanDefinitionScanner(context); ClassPathBeanDefinitionScanner scanner = new ClassPathBeanDefinitionScanner(context);
...@@ -61,14 +62,14 @@ public class ClassPathFactoryBeanDefinitionScannerTests extends TestCase { ...@@ -61,14 +62,14 @@ public class ClassPathFactoryBeanDefinitionScannerTests extends TestCase {
assertEquals("protectedInstance", tb.getName()); assertEquals("protectedInstance", tb.getName());
assertSame(tb, context.getBean("protectedInstance")); assertSame(tb, context.getBean("protectedInstance"));
assertEquals("0", tb.getCountry()); assertEquals("0", tb.getCountry());
tb2 = (TestBean)context.getBean("protectedInstance"); //3 tb2 = context.getBean("protectedInstance", TestBean.class); //3
assertEquals("protectedInstance", tb2.getName()); assertEquals("protectedInstance", tb2.getName());
assertSame(tb2, tb); assertSame(tb2, tb);
tb = (TestBean)context.getBean("privateInstance"); //4 tb = context.getBean("privateInstance", TestBean.class); //4
assertEquals("privateInstance", tb.getName()); assertEquals("privateInstance", tb.getName());
assertEquals(1, tb.getAge()); assertEquals(1, tb.getAge());
tb2 = (TestBean)context.getBean("privateInstance"); //4 tb2 = context.getBean("privateInstance", TestBean.class); //4
assertEquals(2, tb2.getAge()); assertEquals(2, tb2.getAge());
assertNotSame(tb2, tb); assertNotSame(tb2, tb);
...@@ -78,6 +79,7 @@ public class ClassPathFactoryBeanDefinitionScannerTests extends TestCase { ...@@ -78,6 +79,7 @@ public class ClassPathFactoryBeanDefinitionScannerTests extends TestCase {
QualifiedClientBean clientBean = context.getBean("clientBean", QualifiedClientBean.class); QualifiedClientBean clientBean = context.getBean("clientBean", QualifiedClientBean.class);
assertSame(clientBean.testBean, context.getBean("publicInstance")); assertSame(clientBean.testBean, context.getBean("publicInstance"));
assertSame(clientBean.dependencyBean, context.getBean("dependencyBean"));
} }
...@@ -85,6 +87,9 @@ public class ClassPathFactoryBeanDefinitionScannerTests extends TestCase { ...@@ -85,6 +87,9 @@ public class ClassPathFactoryBeanDefinitionScannerTests extends TestCase {
@Autowired @Qualifier("public") @Autowired @Qualifier("public")
public TestBean testBean; public TestBean testBean;
@Autowired
public DependencyBean dependencyBean;
} }
} }
/*
* Copyright 2002-2009 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.context.annotation4;
import org.springframework.stereotype.Component;
/**
* @author Juergen Hoeller
*/
@Component
public class DependencyBean {
}
...@@ -69,4 +69,9 @@ public final class FactoryMethodComponent { ...@@ -69,4 +69,9 @@ public final class FactoryMethodComponent {
return new TestBean("requestScopedInstance", 3); return new TestBean("requestScopedInstance", 3);
} }
@Bean
public DependencyBean secondInstance() {
return new DependencyBean();
}
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册