从 IntelliJ Idea 运行 Maven 目标时使用 IntelliJ Idea 模块类路径

发布于 2024-09-29 00:05:42 字数 576 浏览 2 评论 0原文

假设我有两个 Maven 项目:moduleA 和 moduleB。

moduleA 在其 pom.xml 中依赖于 moduleB。

我使用 IntelliJ Idea,并且有“Maven 项目”工具窗口,其中有这两个 Maven 项目。

并且可以从那里运行 ma​​ven 插件目标:我打开“Maven 项目”->模块A->插件 ->码头->码头:跑。 Java已运行,moduleB位于类路径中,但它位于Maven本地存储库中!

因此,如果我更改 moduleB 源中的某些内容并从 Idea 执行 jetty:run,则在使用 mvn install 安装 moduleB 之前我不会看到代码更改。

Idea中是否有任何解决方案可以在没有mvn install的情况下处理,例如使用idea-module classpath运行某种maven目标?

Lets say I have two maven projects: moduleA and moduleB.

moduleA has a dependency to moduleB in it's pom.xml.

I use IntelliJ Idea, and I have 'Maven Projects' tool window, where I have both these maven projects.

And it is possible to run maven plugin goals from there: I open 'Maven Projects' -> moduleA -> Plugins -> jetty -> jetty:run.
Java is run, moduleB is in classpath, but it is in the Maven local repository!

So that, if I change something in moduleB sources and execute jetty:run from Idea, I will not see code changes until moduleB is installed with mvn install.

Is there any solution in Idea to deal without mvn install, for instance to run somehow maven goals with idea-module classpath?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

疑心病 2024-10-06 00:05:42
  1. 我建议使用 Jetty Integration IDEA 插件来运行独立的 jetty
    http://github.com/codebrewer/intellij-idea-jetty-integration-plugin

  2. 如果你仍然想使用 jetty:run,你可以告诉 IDEA 对 moduleB 进行 mvn install:
    运行->编辑配置->选择你的maven运行配置->配置选项卡->启动前(底部)->运行 Maven Goal

  1. I suggest to use Jetty Integration IDEA plugin to run standalone jetty
    http://github.com/codebrewer/intellij-idea-jetty-integration-plugin

  2. if you still want to use jetty:run, you could tell IDEA to do mvn install for moduleB:
    Run -> Edit Configurations -> select youy maven run config -> Configuration tab -> Before launch (at the bottom) -> Run Maven Goal

甲如呢乙后呢 2024-10-06 00:05:42

该 IDEA 插件不再开发,因为 IntelliJ 现在包含它自己的 Jetty runco​​nfig 东西。

以下是对我的 Maven 多模块项目有用的内容:
在文件、项目结构、模块中,我将所有模块编译到相同的输出路径(“使用模块编译输出路径”)。我选择了 Jetty Deployment 文件夹中的“...WEB-INF\classes”路径。
然后我还必须告诉IDEA在编译时不要清除输出目录。否则,每个编译的模块(一个接一个)都会清除前一个模块中的类。设置,编译器,取消选中“重建时清除输出目录”。

另外,我最初必须将所有外部(maven)依赖项 jar 放入“...WEB-INF\lib”文件夹中。

是的,它很hacky,但是有效。如果有人有更好、更干净的解决方案,我很想知道。

That IDEA plugin is not developed anymore because IntelliJ now includes its own Jetty runconfig thing.

Here's what worked for me with a Maven multi-module project:
In File, Project Structure, Modules I have all modules compile to the same output path ("Use module compile output path"). I chose the "...WEB-INF\classes" path within the folder of the Jetty Deployment folder.
Then I also have to tell IDEA to not clear output directories when compiling. Otherwise each module that compiles (one after another) clears the classes from the previous one. Settings, Compiler, uncheck "Clear output directory on rebuild".

Also, I had to put all my external (maven) dependency jars into the "...WEB-INF\lib" folder initially.

Yes, it's hacky, but works. If someone has a better, cleaner solution I'd be interested to know.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文