在任何Web应用程序,会有一个
web.xml中
WEB-INF/的文件夹。
如果您的Web应用程序中没有文件夹(如文件夹结构中的情况),则默认 Tomcat
web.xml位于
TOMCAT_HOME/conf/web.xml
无论哪种方式,web.xml的相关行都是
<welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list>
因此,找到时与此模式匹配的任何文件都将显示为主页。
在Tomcat中,Web应用程序中的web.xml设置将覆盖默认值(如果存在)。
进一步阅读
如何覆盖Tomcat加载的默认主页?



