-1

Where do I need to put index.jsp file ?

enter image description here

I put it inside the war directory but it gives 404 error after I deploy it.

saplingPro
  • 20,769
  • 53
  • 137
  • 195

1 Answers1

0

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>
Andrei Volgin
  • 40,755
  • 6
  • 49
  • 58