The Java Developers Almanac 1.4


Order this book from Amazon.

   
Home > List of Packages > javax.servlet.jsp  [18 examples] > Java Server Pages  [7 examples]

e1051. Precompiling a JSP Page

Some JSP containers support the capability of precompiling a JSP page. To precompile a JSP page, access the page with a query string of ?jsp_precompile:
    http://hostname.com/mywebapp/mypage.jsp?jsp_precompile
The JSP page will not be executed. If the container supports precompilation, the JSP page will be compiled if necessary.

 Related Examples
e1046. The Quintessential JSP Page
e1047. Running Java Code in a JSP Page
e1048. Saving Data in a JSP Page
e1049. Implementing a Form in a JSP Page
e1050. Implementing a Form That Prevents Duplicate Submissions in a JSP Page
e1052. Preventing the Creation of a Session in a JSP Page

See also: Java Server Pages Headers    Java Server Pages Input    Java Server Pages Output   


© 2002 Addison-Wesley.