我的Webapp位于$HOME/workspace/WebApp01
。如果我输入localhost:8080/WebApp01
,浏览器/容器如何知道它必须从$ HOME / workspace / WebApp01中获取index.html / index.jsp?
答案 0 :(得分:1)
您将web.xml
描述符中的这些文件定义为欢迎文件。 Container(Tomcat)的默认welcome-file-list看起来像这样:
<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)用于确定要加载的文件如下:
请查看here了解详情。