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