0

我创建了一个简单的基于 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.jspinweb-content文件夹。但是浏览器仍然显示相同的welcome.html。我已经清理了项目。我也尝试过创建服务器的新实例。但一切都是徒劳的。我也尝试打开chrome中的URL也是如此,但它显示HTTP 404错误。

4

0 回答 0