我创建了一个简单的基于 Web 的项目,其中我将一个jsp
文件定义为web.xml
.
<web-app>
<welcome-file-list>
<welcome-file>welcome.html</welcome-file>
</welcome-file-list>
</web-app>
我还在文件夹中创建了welcome.html
文件。web-content
项目在tomcat7
.
现在我更改了web.xml
声明index.jsp
为默认文件
<web-app>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
我已经创建了index.jsp
inweb-content
文件夹。但是浏览器仍然显示相同的welcome.html。我已经清理了项目。我也尝试过创建服务器的新实例。但一切都是徒劳的。我也尝试打开chrome中的URL也是如此,但它显示HTTP 404
错误。