Maven Tomcat 项目流程简化

发布于 2024-12-02 09:09:25 字数 205 浏览 2 评论 0原文

我正在 Eclipse 中开发 Maven 项目,其中使用 Maven (mvn install) 创建 WAR 文件并在 Tomcat 服务器上运行它。但是,每次更改应用程序时,我都必须执行 mvn -ocompile war:exploded,有时还必须重新启动 Tomcat。

有没有其他方法可以简化这个漫长而繁重的过程?

I'm working on a Maven project in Eclipse, where I'm using Maven (mvn install) to create my WAR file and run it on my Tomcat server. However, every time I change my application, I have to execute mvn -o compile war:exploded and sometimes have to restart Tomcat.

Is there any other way to simplify this long and heavy process?

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

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

发布评论

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

评论(2

甜嗑 2024-12-09 09:09:25

您可以开始使用:

m2e(maven 到 eclipse 集成)-> http://www.eclipse.org/m2e/

Eclipse WTP(Web 工具平台)-> http://www.eclipse.org/webtools/

WTP 将允许您从 eclipse 运行 Tomcat,并且m2e 将负责将您的 Maven 构建转换为 Eclipse 项目并将其与 WTP 集成。

You may start using:

m2e ( maven to eclipse integration ) -> http://www.eclipse.org/m2e/

Eclipse WTP ( web tools platform ) -> http://www.eclipse.org/webtools/

WTP will allow you to run Tomcat from eclipse and m2e will take care of converting your Maven build into Eclipse project and integrating it with WTP.

能否归途做我良人 2024-12-09 09:09:25

如果您使用的是eclipse,那么您不需要每次都使用mvn -ocompile war:exploded。但是,是的,每次在应用程序中进行更改时都需要使用mvn install

这是您需要执行的操作:

  • 打开服务器视图
  • 打开预期的 tomcat 服务器设置。将打开 tomcat 的设置窗口。
  • 选择模块选项卡。
  • 选择添加外部 Web 模块。将打开一个输入表单。
  • 浏览到应用程序的 target (由 maven 生成)文件夹,然后选择已经分解的 war 目录并将其设置为 Document Base
  • 输入 Path 作为基础您的应用程序的 url。

这只是一次性的努力。

If you are using eclipse then you need not to use mvn -o compile war:exploded every time. But yes, you need to use mvn install each time you make a change in your application.

This is what you need to do:

  • Open Server View
  • Open expected tomcat server settings. A settings window for tomcat will be opened.
  • Select modules tab.
  • Choose Add external web module. An input form will be opened.
  • Browse to your application's target (generated by maven) folder and then select already exploded war directory and set it as Document Base
  • Enter Path as the base url for your application.

This is just one time effort.

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