您需要为您的应用程序配置欢迎文件列表。默认情况下,它是index.html,这就是为什么找不到任何定义它的原因。
看一下
您基本上需要的web.xml部署描述符元素
<welcome-file-list><welcome-file>index.jsp</welcome-file></welcome-file-list>

您需要为您的应用程序配置欢迎文件列表。默认情况下,它是index.html,这就是为什么找不到任何定义它的原因。
看一下
您基本上需要的web.xml部署描述符元素
<welcome-file-list><welcome-file>index.jsp</welcome-file></welcome-file-list>