Where do I need to put index.jsp
file ?
I put it inside the war
directory but it gives 404 error
after I deploy it.
Where do I need to put index.jsp
file ?
I put it inside the war
directory but it gives 404 error
after I deploy it.
It should be in the /war directory. Check that you included the following lines in the web.xml:
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>