按需将 war 文件从网络共享部署到 Tomcat 中?
我是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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 Tomcat 的管理器,特别是如何部署新的应用程序远程应用程序以及如何重新加载现有应用程序。
总之,您需要确保可以通过某种 URL 从运行 Tomcat 的计算机访问您的 WAR。 URL 可以使用 http 或文件方案。
您提到了网络共享,因此在您的特定情况下,您可能需要安装网络共享,以便它看起来是本地目录。 (Windows URL 示例如下):
您还可以尝试使用 Web 服务器托管 war 文件,并使用 http url。 (如果您使用的是 Bamboo 或 Hudson 等持续集成服务器,您可能已经在这样做了。)例如:
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):
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: