1、web.xml中配置web应用的首页
<!-- 配置web应用的首页列表--> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list> <!--该配置文件指定了Web应用的首页依次顺序是 index.html、index.htm、index.jsp-->