使用 webapps/ 内的自动部署在 Tomcat 中指定嵌套上下文路径
Specifying a nested context path in Tomcat using autodeploy inside webapps/
我知道在默认的 Tomcat 8 配置中,我可以将文件 foo.war
文件放入 webapps/
目录,然后 Tomcat 将自动部署我的 Web 应用程序/foo/
.
的上下文路径
如果我希望上下文路径是 /foo/bar
,我会使用什么 WAR 文件名?
将名为 foo#bar.war
的 WAR 文件部署到 webapps
中会导致上下文路径 /foo/bar
。参见 Apache Tomcat 8 Configuration Reference: The Context Container: Naming。
我知道在默认的 Tomcat 8 配置中,我可以将文件 foo.war
文件放入 webapps/
目录,然后 Tomcat 将自动部署我的 Web 应用程序/foo/
.
如果我希望上下文路径是 /foo/bar
,我会使用什么 WAR 文件名?
将名为 foo#bar.war
的 WAR 文件部署到 webapps
中会导致上下文路径 /foo/bar
。参见 Apache Tomcat 8 Configuration Reference: The Context Container: Naming。