| language | defines the scripting language: currently only java allowed (default) |
| extends | fully qualified classname to which this JSP page is transformed |
| import | a ',' 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.*" |
| session | indicate that this page is part in an (http) session. Default is true. |
| buffer | specify 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" |
| autoFlush | Buffer flushing policy. Default is 'true'. |
| isThreadSafe | Indicates 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. |
| info | define the string returned by Servlet.getServletInfo() |
| errorPage | Defines an URL which gets active whenever an uncatched Exception is thrown inside this .jsp page. |
| isErrorPage | Indicate 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. |
| contentType | Define MIME TYPE or Charset of the response. E.g. 'contentType="charset=ISO-8859-1"' or 'contentType="text/html"' |
| encoding | Defines the character encoding for jsp page itself. |