I am creating a Java REST web service. For some reason the startup page index.jsp is giving me a HTTP Status 404 - Not Found error. My index.jsp is in the web folder. My web.xml contains
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
It also contains
<servlet-mapping>
<servlet-name>Jersey</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
I noticed that when I remove the servlet mapping the index page works. But I need that mapping. I have been reading similar posts but couldn't find an answer to my question. Would appreciate any help. Thank you.