1.默认web.xml欢迎页面为index.html
错误写法(会出现404错误):
<welcome-file-list>
<welcome-file>/index.html</welcome-file>
</welcome-file-list>
原因:index.html前面没有斜杠" / ", 把" / "去掉。
2.在web.xml中配置要加载的首页也可这样写
<welcome-file-list>
<welcome-file>Html/index.html</welcome-file> /Html是文件夹(就是index.html的上一层),index.html是要加载的首页
</welcome-file-list>