在一台tomcat上部署并运行两个应用程序
我目前在 tomcat 上运行了一个 .war,我想知道如果我将另一个 .war 放在 webapp 目录中,它也能工作吗?如果他们有不同的名字?我真的应该尝试这个,因为当前运行的 web 应用程序很重要,所以我必须首先检查。
因此,如果我正在运行 appX,并且将 appY 放入 webapp 目录中,我将能够运行两个 Web 项目吗?
I currently have one .war running on tomcat, I wonder if I put another .war in webapp directory, will it work also? if they have different names? I should really try this because webapp currently running is important so I have to check first.
So if I have appX running, and if I put appY in webapp directory will I be able to run two web projects ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。 Tomcat 将解开您的 war 文件以创建同名的目录。然后,您应该能够在各自的上下文路径中浏览这两个应用程序。例如,localhost:8080/appX 和 http://localhost:8080/appY。
Yes. Tomcat will unwrap your war file to create a directory by the same name. You should then be able to browse both applciations at the respective context path. For example, localhost:8080/appX and http://localhost:8080/appY.