Package org.apache.jasper
Class Constants
java.lang.Object
org.apache.jasper.Constants
Some constants and other global data that are used by the compiler and the runtime.
- Author:
- Anil K. Vijendran, Harish Prabandham, Shawn Bayern, Mark Roth
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final StringName of the system property containing the tomcat product installation pathstatic final intDefault size of the JSP buffer.static final intDefault size for the tag buffers.static final StringDeprecated.static final booleanHas security been turned on?static final StringThe default package name for compiled jsp pages.static final StringThe base class of the generated servlets.static final intDefault tag handler pool size.static final StringDeprecated.Will be removed in Tomcat 10.1 onwardsstatic final StringThe query parameter that causes the JSP engine to just pregenerated the servlet but not invoke it.static final String_jspService is the name of the method that is called by HttpJspBase.service().static final StringServletContext attribute for classpath.static final StringThe name of the path parameter used to pass the session identifier back and forth with the client.static final Stringstatic final StringThe default package name for tag handlers generated from tag filesstatic final StringPrefix to use for generated temporary variable namesstatic final booleanstatic final StringName of the ServletContext init-param that determines if the XML parsers will block the resolution of external entities.static final StringName of the ServletContext init-param that determines if the XML parsers used for *.tld files will be validating or not.
- 
Constructor SummaryConstructors
- 
Method Summary
- 
Field Details- 
SPEC_VERSION- See Also:
 
- 
JSP_SERVLET_BASEThe base class of the generated servlets.
- 
SERVICE_METHOD_NAME_jspService is the name of the method that is called by HttpJspBase.service(). This is where most of the code generated from JSPs go.
- 
STANDARD_IMPORTS
- 
SERVLET_CLASSPATHServletContext attribute for classpath. This is tomcat specific. Other servlet engines may choose to support this attribute if they want to have this JSP engine running on them.
- 
DEFAULT_BUFFER_SIZEpublic static final int DEFAULT_BUFFER_SIZEDefault size of the JSP buffer.- See Also:
 
- 
DEFAULT_TAG_BUFFER_SIZEpublic static final int DEFAULT_TAG_BUFFER_SIZEDefault size for the tag buffers.- See Also:
 
- 
MAX_POOL_SIZEpublic static final int MAX_POOL_SIZEDefault tag handler pool size.- See Also:
 
- 
PRECOMPILEThe query parameter that causes the JSP engine to just pregenerated the servlet but not invoke it.
- 
JSP_PACKAGE_NAMEThe default package name for compiled jsp pages.
- 
TAG_FILE_PACKAGE_NAMEThe default package name for tag handlers generated from tag files
- 
NS_PLUGIN_URLDeprecated.Will be removed in Tomcat 10.1 onwardsDefault URLs to download the plugin for Netscape and IE.- See Also:
 
- 
IE_PLUGIN_URLDeprecated.- See Also:
 
- 
TEMP_VARIABLE_NAME_PREFIXPrefix to use for generated temporary variable names
- 
IS_SECURITY_ENABLEDpublic static final boolean IS_SECURITY_ENABLEDHas security been turned on?
- 
USE_INSTANCE_MANAGER_FOR_TAGSpublic static final boolean USE_INSTANCE_MANAGER_FOR_TAGS
- 
SESSION_PARAMETER_NAMEThe name of the path parameter used to pass the session identifier back and forth with the client.
- 
CATALINA_HOME_PROPName of the system property containing the tomcat product installation path- See Also:
 
- 
XML_VALIDATION_TLD_INIT_PARAMName of the ServletContext init-param that determines if the XML parsers used for *.tld files will be validating or not.This must be kept in sync with org.apache.catalina.Globals - See Also:
 
- 
XML_BLOCK_EXTERNAL_INIT_PARAMName of the ServletContext init-param that determines if the XML parsers will block the resolution of external entities.This must be kept in sync with org.apache.catalina.Globals - See Also:
 
 
- 
- 
Constructor Details- 
Constantspublic Constants()
 
-