If you want to have one and only one entry point, you can put your JSPs in a separate directory not accessible directly (such as WEB-INF/classes or make a WEB-INF/jsp directory), then have a servlet that dispatches requests to the different JSPs.Furthermore, you can use a framework such as Struts which will help you accomplish the above tasks.Hope this helps!!Joe