我有一个基于 Maven 的 2 模块 Intellij 项目,其组织方式如下:
MyAppProject
--->MyAppDomain (builds a JAR)
--->MyAppWAR (builds a WAR, including the JAR above)
我可以使用 Maven 构建项目,生成的 WAR 包含 MyAppDomain.JAR 作为依赖项:
<dependency>
<groupId>com.mycompany.myapp</groupId>
<artifactId>MyAppDomain</artifactId>
<version>1.0.0</version>
</dependency>
这个 WAR 在 Tomcat 中工作。但是,如果我使用 Intellij Idea Ultimate 的整洁 Tomcat 集成构建它,WAR 会失败并出现以下错误(为便于阅读而格式化):
org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor#0':
Initialization of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'entityManagerFactory' defined in ServletContext resource [/WEB-INF/config/data-context.xml]:
Invocation of init method failed; nested exception is java.lang.IllegalStateException:
Conflicting persistence unit definitions for name 'caPersistenceUnit':
file:/C:/JavaSoftware/apache-tomcat-6.0.32/webapps/MyApplication/WEB-INF/lib/MyAppDomain.jar, file:/C:/JavaSoftware/apache-tomcat-6.0.32/webapps/MyApplication/WEB-INF/lib/MyAppDomain-1.0.0.jar
因此,IDEA 似乎包含了 Maven 指定的 JAR (MyAppDomain-1.0.0.jar),还包含了它自己的包含所有相同文件的 JAR (MyAppDomain.jar) 版本。
我徒劳地寻找在 Intellij IDEA 中关闭它的方法 - 有人知道如何阻止这种行为(包括共同驻留项目)吗?