在struts2 + spring + hibernate集成开发柜架中,spring的配置文件也可以分模块,然后在applicationContext.xml中引入即可,方法如下:
<?xml version="1.0" encoding="UTF-8"?>
- <beans
- xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
- <!--引用各模块的spring配置文件-->
- <importresource="conf/partner/partner-spring.xml"></import>
- </beans>
但需要注意的是resource中引入的文件的地址要用相对路径,不然会出错。