How to configure welcome file list in web.xml
You need to put the JSP file in /index.jsp instead of in /WEB-INF/jsp/index.jsp. This way the whole servlet is superflous by the way. WebContent |– META-INF |– WEB-INF | `– web.xml `– index.jsp If you’re absolutely positive that you need to invoke a servlet this strange way, then you should map it on an URL … Read more