WEB-INF之外的Spring XML文件
作者:互联网
我正在使用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文件.我想念什么吗?
解决方法:
我猜想演示文稿项目被编译为WAR,服务项目被编译为JAR.演示项目也依赖于服务项目.
在这种情况下,请将spring-services.xml文件作为资源包含在服务项目的pom中,以便将其放入其jar中,并且由于演示文稿项目对该服务项目具有依赖性,因此该服务jar将放置在/ WEB中-INF / lib文件夹,然后Spring将能够从类路径中加载它.
标签:web-xml,spring,gwt 来源: https://codeday.me/bug/20191209/2097753.html