在设置文件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>
因此,你只要在目录中放入index.html,或index.htm,或index.jsp,敲入目录时就会自动
显示index.html,或index.htm,或index.jsp。
如果你没有welcome文件,你也可以做如下设置:
<init-param>
<param-name>listings</param-name>
<param-value>false</param-value>
</init-param>