按需将 war 文件从网络共享部署到 Tomcat 中?

发布于 2024-11-28 12:06:09 字数 69 浏览 1 评论 0原文

我是Tomcat的新手;我想将存储在网络共享上的 war 文件部署到正在运行的 Tomcat 实例中。我将不胜感激任何建议。

I am a newbie to Tomcat; I would like to deploy a war file stored on a network share into a running Tomcat instance. I would appreciate any suggestions.

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

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

发布评论

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

评论(1

三寸金莲 2024-12-05 12:06:09

查看 Tomcat 的管理器,特别是如何部署新的应用程序远程应用程序以及如何重新加载现有应用程序

总之,您需要确保可以通过某种 URL 从运行 Tomcat 的计算机访问您的 WAR。 URL 可以使用 http 或文件方案。

您提到了网络共享,因此在您的特定情况下,您可能需要安装网络共享,以便它看起来是本地目录。 (Windows URL 示例如下):

file:/X:/path/to/war/

您还可以尝试使用 Web 服务器托管 war 文件,并使用 http url。 (如果您使用的是 Bamboo 或 Hudson 等持续集成服务器,您可能已经在这样做了。)例如:

http://builds.example.com/path/to/war

Take a look at Tomcat's Manager, in particular, how to deploy a new application remotely and how to reload an existing application.

In summary, you'll need to ensure that your WAR is reachable via some sort of URL from the machine running Tomcat. URLs can use http or file scheme.

You mention a network share, so in your particular case you may need to mount the network share so it appears to be a local directory. (Windows URL example follows):

file:/X:/path/to/war/

You could also try hosting the war file with a web server, and using an http url. (You might already be doing this if you're using a continuous integration server like Bamboo or Hudson.) For example:

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