1.第一種,使用數組
代碼
ApplicationContext contex=new ClassXmlApplicationContext(bew String["a1.xml","a2.xml"]);
2.第二種,只用通配符
代碼
ApplicationContext contex=new ClassXmlApplicationContext("a*.xml");
//但此種方法只對文件系統中的xml文件有效,針對jar包中的無效
3.第三種,引入
代碼
ApplicationContext contex=new ClassXmlApplicationContext("a1.xml");
//在a1.xml中
//執行resource路徑為相對a1.xml的路徑