我正在使用Spring和GWT在多模块maven2项目中工作.假设我有两个子项目:服务和演示. “服务”包含服务的实际实现,“表示”负责将其包装为GWT.
我已经成功加载了WEB-INF目录(与web.xml相同)中的Spring XML文件,但是我应该从其他模块加载这些XML文件时遇到了问题.
我的web.xml看起来像这样:
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath:/spring-presentation.xml,classpath:/spring-services.xml
</param-value>
</context-param>
这里spring-presentation.xml在演示项目中,而spring-services.xml在服务项目中.
尚未加载spring-services.xml文件.我想念什么吗?
最佳答案
原文链接:/spring/531670.html