码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2019-10-23 00:17:25      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:prope   sys   配置   style   out   get   text   文件的   print   


如果我们在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());

 

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

标签:prope   sys   配置   style   out   get   text   文件的   print   

原文地址:https://www.cnblogs.com/Magic-Li/p/11723226.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!