JSP Page directive

Defines a number of page dependent properties.

Attributes:
languagedefines the scripting language: currently only java allowed (default)
extendsfully qualified classname to which this JSP page is transformed
importa ',' separated list of packages to import (e.g. "x.y.Clazz,x.y.*"). Note that AnyJ creates this, when you make use of autimport during editing of your .jsp page. Default is
"java.lang.*, javax.servlet.*, javax.servlet.jsp.*, javax.servlet.http.*"
sessionindicate that this page is part in an (http) session. Default is true.
bufferspecify size of output buffer in kb. Use "none" to turn off buffering. Values have to end with 'kb' (e.g. "2000kb"). Default is not less than "8kb"
autoFlushBuffer flushing policy. Default is 'true'.
isThreadSafeIndicates level of thread safety. Default is true. If true multiple requests can be dispatched simultanously to this page. Else the jsp-engine ensures, that only one request is processed by this page at a time.
infodefine the string returned by Servlet.getServletInfo()
errorPageDefines an URL which gets active whenever an uncatched Exception is thrown inside this .jsp page.
isErrorPageIndicate this page is target of another JSP page's errorPage. In this case the built-in variable 'exception' is available to your .jsp page. Default is false.
contentTypeDefine MIME TYPE or Charset of the response. E.g. 'contentType="charset=ISO-8859-1"' or 'contentType="text/html"'
encodingDefines the character encoding for jsp page itself.