I'm getting the following error when running my Eclipse project on Tomcat server:
HTTP Status 404 - The requested resource (/ProjectName/) is not available.
The URL in browser's address bar is http://localhost:8080/ProjectName/
.
I really don't know what is missing in my files. I have an Index.jsp
in the /WebContent
folder and my web.xml
contains below entry:
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>