NonStop Servlets for JSP System Administrator's Guide
Installing NSJSP
NonStop Servlets for JavaServer Pages (NSJSP) System Administrator’s Guide—525644-001
2-10
Directory Example
By default, the /webapps subdirectory contains your server applications. (Use
docbase in iTP_server.xml to set this path, or any other preferred location.)
myapp1 is a sample application subdirectory. At this (root) level you can store files
such as index.html, or create subdirectories to manage your web application
resources, for example /images for graphics files.
Every application must have a WEB-INF subdirectory. It is a private area whose
contents cannot be directly served to users. WEB-INF is a structured set of
subdirectories containing servlet classes, archives, and another deployment descriptor
(application-specific) web.xml file. Use this web.xml file to override any global
settings that were made in the /servlet_jsp/conf/web.xml directory.
Java class files are located in the /classes subdirectory; this subdirectory is
required. The server looks for class files here (either by class name or alias, set in
either of the web.xml files), and places class files here after exploding JAR files
stored in /lib.
You can place Java source files in a /src subdirectory (this is optional).