我创建了一个webapp,并将其部署在tomcat上。
但我需要http://ip:port
而不是http://ip:port/nameOfTheWarFile进入。有没有办法从网址中删除该名称,只需使用http://ip:port?
答案 0 :(得分:1)
将应用程序部署为ROOT.war
。
如果您不希望应用程序名称位于网址内并直接在" http://ip:port"等网址上访问该应用程序,则表示您需要您的网络应用的空上下文路径。
基于Tomcat documentation,您可以部署基本名称等于ROOT
(即ROOT.war
或ROOT.xml
)的Web应用程序,以实现空的上下文路径:
Context Path | Base File Name | Example File Names
Empty String | ROOT | ROOT.xml, ROOT.war, ROOT
答案 1 :(得分:0)
您需要更改Web应用程序的上下文路径。另一个用户有类似的问题,并在这里得到解答。
How to set the context path of a web application in Tomcat 7.0