主要有两种方式:
1、在一个配置文件中使用import标签导入其他配置文件,即
applicationContext.xml中部分代码如下:
2、在web.xml中配置Spring配置文件处导入多个配置文件,即可
a、导入多个配置文件
web.xml部分代码如下:
contextConfigLocation
applicationContext-core.xml,
applicationContext-dao.xml,
applicationContext-service.xml,
applicationContext-action.xml
b、使用*通配符导入多个配置文件
web.xml部分代码如下:
contextConfigLocation
applicationContext-*.xml
主要有两种方式:
1、在一个配置文件中使用import标签导入其他配置文件,即
applicationContext.xml中部分代码如下:
2、在web.xml中配置Spring配置文件处导入多个配置文件,即可
a、导入多个配置文件
web.xml部分代码如下:
applicationContext-core.xml,
applicationContext-dao.xml,
applicationContext-service.xml,
applicationContext-action.xml
b、使用*通配符导入多个配置文件
web.xml部分代码如下:
applicationContext-*.xml
在2里面加上一句
在定义bean之前导入
web.xml中添加