当Spring 的Application.xml配置文件过于臃肿的时候,可以将里面的配置分开存放,也就是分模块配置。
两种方法:
- 在类加载配置文件的时候,加载多个,传入多个xml配置文件
ApplicationContext applicationContext = new ClassPathXmlApplicationContext(“ApplicationContext.xml”,“ApplicationContext.xml2”);
- 在一个配置文件中引入多个配置文件,比如在xml1中引入xml2,层层引用,在xml1中使用 import 标签引入xml2配置文件
< import resource=“ApplicationContext.xml2”/>