To create a document in the ATG Document Editor:

Rendering New JSPs

The first time a JSP is requested, it might take longer to display than you expect. Each time a page is requested, the servlet-version of the page is translated into HTML and rendered. New pages are not yet converted into servlets, so they must first be translated into raw Java code and then compiled into servlets before undergoing the final translation into HTML. You can minimize the delay by precompiling all pages at startup; see your application installation guide for instructions.

You can precompile individual pages at server startup by specifying them in your Web application deployment descriptor. For example, you might specify the JSP MyPage.jsp as follows:

<servlet>
  <servlet-name>MyPage.jsp</servlet-name>

  <jsp-file>/path/to/jsp/MyPage.jsp</jsp-file>

  <load-on-startup>1</load-on-startup>
</servlet>

where: