SpringIOC注入模块中xml文件导入其他xml文件配置

2019-10-25 06:55:35来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

SpringIOC注入模块中xml文件导入其他xml文件配置


如果我们在spring框架中配置了多个xml文件,我们可以在读取配置文件的时候把这些xml文件一下全都读取
也可以只读一个总的xml文件,在这个总的xml文件中把其他的xml全都都导入进来。

例如:
student.xml文件:

<bean name="student" class="com.briup.bean.Student">
<property name="id">
<value>25</value>
</property>
</bean>

teacher.xml文件:

<bean name="teacher" class="com.briup.bean.Teacher">
<property name="student" ref="student"></property>
</bean>

import.xml文件:

<import resource="teacher.xml"/>
<import resource="student.xml"/>

main:

String[] path = {"com/briup/ioc/imp/import.xml"};
ApplicationContext container = 
new ClassPathXmlApplicationContext(path);

Teacher t = (Teacher) container.getBean("teacher");
System.out.println(t.getStudent());

 


原文链接:https://www.cnblogs.com/Magic-Li/p/11723226.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Java垃圾回收机制

下一篇:java-day10