As the title says: How do I show the .jsp extension in the URL when forwarding from Servlet to a JSP page without redirecting and thereby losing functionality of the Servlet?
If I forward from a Servlet to a JSP page by using the following code I still have the Servlet in my URL:
request.getRequestDispatcher("index.jsp").forward(request, response);