如何将构建步骤添加到 Eclipse“运行配置”?

发布于 2024-08-25 19:40:02 字数 186 浏览 5 评论 0原文

有没有办法将构建步骤添加到 Eclipse 中的“运行配置”?

我的项目使用一个应在启动 Web 应用程序之前构建的小程序。因此,我想在实际运行应用程序之前将 Eclipse 配置为执行这一步骤。

我知道我可以使用 Ant/Maven 来做到这一点,但我想知道是否有办法在 Eclipse 中做到这一点。

谢谢

Is there a way to add build steps to a "run configuration" in Eclipse?

My project uses an applet that should be built before starting the web application. So I'd like to configure Eclipse to do this single step before actually running the application.

I know I can do it with Ant/Maven, but I wonder if there's a way to do it in Eclipse.

Thanks

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

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

发布评论

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

评论(1

终陌 2024-09-01 19:40:02

对于经典的启动(Java 或 Java Applet)配置,不需要。不直接。

对于外部 Tols 启动器,也不是直接的。

这个想法是:

  • 不要每次修改主项目时都构建小程序,
  • 确保在您想要启动 Web 应用程序时构建它。

为此,您可以定义两个项目:

  • 一个用于编译主项目。
  • 第二个(取决于第一个)用于编译您的小程序。

然后,您的启动配置将与第二个项目(包括第一个项目)一起运行。

如果选择“自动构建”选项,则第二个项目在未先编译的情况下不应运行。

For a classic launching (Java or Java Applet) configuration, no. Not directly.

For an External Tols launcher, not directly either.

The idea would be:

  • to not build your applet every time you modify your main project
  • make sure it is built when you want to launch your webapp.

For that, you could define two projects:

  • one for the compilation of your main project.
  • the second (depending on the first) for the compilation of your applet.

Your launching configuration would then run with the second project (which includes the first)

If the option "Build automatically" is selected, the second project shouldn't run without being compiled first.

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