1. 程式人生 > >ClassPathXmlApplicationContext載入多個XML檔案

ClassPathXmlApplicationContext載入多個XML檔案

用如下陣列的形式就可以了。

public static void main(String[] args) throws IOException {
      ApplicationContext ctx = new ClassPathXmlApplicationContext(
            new String[]{"MultithreadTaskBeans.xml", "common.xml"});
   }