我将现有的spring项目拆分为多模块项目,其中每个模块仅依赖于公共模块并创建一个jar文件,除了最后一个创建war文件的jar文件。
这是项目结构
parent - packaging -POM, defines module sequence
common_mod - common java code i.e. interface , base classes
jar-Mod-1 - depends on common
jar-Mod-2 - depends on common
jar-Mod-3 - depends on common
war-Mod - depends only on common, this contains java and webapp code
每个项目都有自己的 spring 上下文。最后一个模块导入它们中的每一个,例如
<import resource="classpath*:common-config.xml"/>
现在我想创建一个包含所有模块 jar 的单一战争,但没有将每个模块定义为最终战争模块中的依赖项。如果我指定相同,那么开发人员也可以在 war 模块中编写模块特定代码(比如 Jar Mod 1 模块),我想避免这种情况。
现在当我创建war时,它只包含公共模块的jar,因为它在war模块中被指定为依赖项。
所以当我运行这个项目时,它抱怨没有从其他模块中找到 bean,这很明显,因为 war 不包含其他模块的 jar。