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 Summary
Modifier and TypeFieldDescriptionstatic final String
Name of the system property containing the tomcat product installation pathstatic final int
Default size of the JSP buffer.static final int
Default size for the tag buffers.static final String
Name of the ServletContext init-param that determines the JSP factory pool size.static final int
Default tag handler pool size.static final String
static final String
Name of the ServletContext init-param that determines if the XML parsers will block the resolution of external entities.static final String
Name of the ServletContext init-param that determines if the XML parsers used for *.tld files will be validating or not. -
Constructor Summary
-
Method Summary
-
Field Details
-
SPEC_VERSION
- See Also:
-
STANDARD_IMPORTS
-
DEFAULT_BUFFER_SIZE
public static final int DEFAULT_BUFFER_SIZEDefault size of the JSP buffer.- See Also:
-
DEFAULT_TAG_BUFFER_SIZE
public static final int DEFAULT_TAG_BUFFER_SIZEDefault size for the tag buffers.- See Also:
-
MAX_POOL_SIZE
public static final int MAX_POOL_SIZEDefault tag handler pool size.- See Also:
-
CATALINA_HOME_PROP
Name of the system property containing the tomcat product installation path- See Also:
-
XML_VALIDATION_TLD_INIT_PARAM
Name 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_PARAM
Name 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:
-
JSP_FACTORY_POOL_SIZE_INIT_PARAM
Name of the ServletContext init-param that determines the JSP factory pool size. Set the value to a positive integer to enable it. The default value is8
per thread.- See Also:
-
-
Constructor Details
-
Constants
public Constants()
-