If I have a servlet I am able to forward to a jsp in the WebContent folder with no issues:
request.getRequestDispatcher("page.jsp").forward(request, response);
request being an HttpServletRequest and response being an HttpServletResponse.
Now for the question: What if I want to use package by feature? That is, move page.jsp into the same package as my servlet class so that all the files for one "feature" are in the same place. Is this possible?