How do I install JSP pages and Java Beans in a web application?
• Put the JSP source files in any directory under your application directory (/WEBAPP in the examples above). • Make sure that the compiled beans are in the CLASSPATH. This can be done either by setting the CLASSPATH manually or by editing the startserver script. • Edit the file WEBAPP/WEB-INF/mappings.properties and the file WEBAPP/WEB-INF/servlets.properties to map “.jsp” in the URI to the JSP Servlet which will process the jsp file. (See the property files in /examples/WEB-INF/ for an example. Your mapping should be similar.) • Finally, restart the server.