Spring ClassPathXmlApplicationContext在spring conf文件中创建所有bean的空实例?

时间:2015-07-29 16:56:57

标签: java spring

我在玩Spring。 我创建了一个Spring bean文件:

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-3.0.xsd"> 

 <context:annotation-config />
<context:component-scan   base-package="hibernate.entities" />

    <bean id="sicknessLeprosa" class="hibernate.entities.Sickness"  init-method="print"  scope="prototype">
<property name="nom" value="Leprosa" />
</bean>
<bean id="sicknessSclerosa" class="hibernate.entities.Sickness"  init-method="print"  scope="prototype">
<property name="nom" value="Sclerosa" />
</bean>

</beans>

我打电话的时候:

ApplicationContext context = new ClassPathXmlApplicationContext("Spring-Module-Annotations.xml");
Map<String, Sickness> SicknessList = context.getBeansOfType(Sickness.class);
System.out.println("Number of ISickness beans: " + SicknessList.size() );
for(Entry<String, Sickness> entry : SicknessList.entrySet() ){
System.out.print(entry.getKey() + ": ");
entry.getValue().print();
}

我得到了这个输出:

Number of ISickness beans: 3
sickness: undefined sickness
sicknessLeprosa: Leprosa
sicknessSclerosa: Sclerosa

第一次出现的地方来自????????????? 它看起来来自:

new ClassPathXmlApplicationContext("Spring-Module-Annotations.xml");

这似乎在调用时会创建一个Sickness实例。

提前谢谢

1 个答案:

答案 0 :(得分:2)

当您使用组件扫描时,这将以递归方式扫描您的基本包,并尝试查找使用构造型注释注释的类(例如@Component@Service@Repository ...)。我想你的Sickness课程中有一个是注释的。在这种情况下,容器将初始化它,这就是你获得第一个bean的原因。其他两个bean在配置类中明确定义。

顺便说一句,如果您使用<context:annotation-driven/>

,则不需要<context:component-scan />