So, now that I have moved my JSP files to /WEB-INF/content from /content after coding my ProcessServlet to use forward() to get to them, how should I set up my web.xml URL pattern to get to the Servlet?
Note: My JSPs were under /content along with CSS, image and JS files. So /content/css, /content/image, /content/js are all still there.
I found that if I use the pattern "/content/*" in web.xml for my Servlet then requests for css, images and js all go through the Servlet as well. How should I avoid this?
Can someone suggest a better way to set up my URLs and directories?