我的spring学习笔记6-ApplicationContext实例化的参数兼容思想

ApplicationContext能读取多个Bean定义文件,方法是:

ApplicationContext appContext = new ClassPathXmlApplicationContext(

new String[]{“bean-config1.xml”,“bean-config2.xml”,“bean-config3.xml”,“bean-config4.xml”}

);


还有就是使用 * 字符:

如:

ApplicationContext appContext = new ClassPathXmlApplicationContext(

“bean*.xml”);


(注意*字符实际的文件系统内有效,如果是在.jar文件中,上面的 * 指定就无效)

当需要多个Bean定义文件的时候,Spring开发团队建议使用Application的方式来读取,好处是Bean定义文件之间是各自独立的,不用意识到彼此的存在。另外一个替代的方式用<import>标签:如

<beans ...>

    <import resource="dao-config.xml" />

    <import resource="resource/msgSource.xml" />

    <bean id="bean1" class="..." />

    <bean id="bean2" class="..." />

</beans>


注意:

<import>标签必须放置在<bean>标签之前,定义文件必须放在统一个目录或者是在Classpath中,以相对路径指定Bean定义文件的位置,每个定义文件的内容都必须包括<beans>跟标签。

你可能感兴趣的:(Spring 3)