1.第一种,使用数组
ApplicationContext contex=new ClassXmlApplicationContext(new String["applciation.xml","applciation-hibernate.xml"]);
2.第二种,只用通配符
ApplicationContext contex=new ClassXmlApplicationContext("applciation*.xml");
但此种方法只对文件系统中的xml文件有效,针对jar包中的无效
3.第三种,引入
ApplicationContext contex=new ClassXmlApplicationContext("applciation.xml");
在a1.xml中
<import resource="applciation-hibernate..xml"/> 执行resource路径为相对a1.xml的路径
spring容器的三种初始化方法
最新推荐文章于 2023-04-04 19:04:32 发布