gpt4 book ai didi

java - Intellij IDEA 包含 Maven 已经包含的其他模块

转载 作者:行者123 更新时间:2023-11-28 22:08:48 26 4
gpt4 key购买 nike

我有一个基于 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 中关闭此功能的方法 - 有人知道如何停止此行为(包括共同驻留项目)吗?

最佳答案

我无法找出如何关闭此行为,但我找到了一个可以正确构建 WAR 的解决方法。

  1. Select "Run -> Edit Configurations" from the menu. 
2. Select your"Tomcat Server" job.
3. Click the "Deployment" tab.
4. At the bottom, where it says "Before Launch: Another Configuration," delete the "Make" option.
5. Click the "+" (plus) sign and select your Maven Build task to add it to the "Before Launch" list.

通过这样做,Intellij 将使用您设置的 Maven 构建任务来创建 WAR,而不是使用它自己的“Make”命令。

关于java - Intellij IDEA 包含 Maven 已经包含的其他模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18091890/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com