Package org.apache.jasper
Class EmbeddedServletOptions
- java.lang.Object
-
- org.apache.jasper.EmbeddedServletOptions
-
-
Field Summary
Fields Modifier and Type Field Description boolean
fork
Should Ant fork its java compiles of JSP pages.
-
Constructor Summary
Constructors Constructor Description EmbeddedServletOptions(javax.servlet.ServletConfig config, javax.servlet.ServletContext context)
Create an EmbeddedServletOptions object using data available from ServletConfig and ServletContext.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
genStringAsByteArray()
Are text strings to be generated as byte arrays, if the page is unbuffered?boolean
genStringAsCharArray()
Are Text strings to be generated as char arrays?int
getCheckInterval()
Background JSP compile thread check intervallboolean
getClassDebugInfo()
Should class files be compiled with debug information?String
getClassPath()
What classpath should I use while compiling the servlets generated from JSP files?String
getCompiler()
Compiler to use.String
getCompilerClassName()
The name of class that implements JavaCompiler, used for Java compilations.String
getCompilerSourceVM()
Compiler source VM, e.g.String
getCompilerTargetVM()
The compiler target VM, e.g.boolean
getDevelopment()
Is Jasper being used in development mode?boolean
getErrorOnUseBeanInvalidClassAttribute()
Returns true if Jasper issues a compilation error instead of a runtime Instantiation error if the class attribute specified in useBean action is invalid.boolean
getFork()
boolean flag to tell Ant whether to fork JSP page compilations.String
getIeClassId()
Class ID for use in the plugin tag when the browser is IE.int
getInitialCapacity()
Gets initial capacity of HashMap which maps JSPs to their corresponding servlets.String
getJavaEncoding()
Java platform encoding to generate the JSP page servlet.JspConfig
getJspConfig()
Obtain JSP configuration informantion specified in web.xml.boolean
getKeepGenerated()
Are we keeping generated code around?boolean
getMappedFile()
Are we supporting HTML mapped servlets?int
getModificationTestInterval()
Modification test interval.String
getProperty(String name)
boolean
getSaveBytecode()
If class files are generated as byte arrays, should they be saved to disk at the end of compilations?File
getScratchDir()
What is my scratch dir?boolean
getSendErrorToClient()
Should errors be sent to client or thrown into stderr?String
getSystemClassPath()
Gets the system class path.TagPluginManager
getTagPluginManager()
Obtain a Tag Plugin ManagerTldScanner
getTldScanner()
The cache for the location of the TLD's for the various tag libraries 'exposed' by the web application.boolean
getTrimSpaces()
Should white spaces between directives or actions be trimmed?boolean
getUsePrecompiled()
Returns the value of the usePrecompiled (or use-precompiled) init param.boolean
isDefaultBufferNone()
If the buffer attribute for the page directive is not specified, is the default "none"?boolean
isPoolingEnabled()
Returns true if tag handler pooling is enabled, false otherwise.boolean
isSmapDumped()
Should SMAP info for JSR45 debugging be dumped to a file?boolean
isSmapSuppressed()
Is the generation of SMAP info for JSR45 debuggin suppressed?boolean
isValidationEnabled()
boolean
isXpoweredBy()
Is generation of X-Powered-By response header enabled/disabled?void
setErrorOnUseBeanInvalidClassAttribute(boolean b)
void
setProperty(String name, String value)
-
-
-
Method Detail
-
getKeepGenerated
public boolean getKeepGenerated()
Are we keeping generated code around?- Specified by:
getKeepGenerated
in interfaceOptions
-
getSaveBytecode
public boolean getSaveBytecode()
Description copied from interface:Options
If class files are generated as byte arrays, should they be saved to disk at the end of compilations?- Specified by:
getSaveBytecode
in interfaceOptions
-
getTrimSpaces
public boolean getTrimSpaces()
Should white spaces between directives or actions be trimmed?- Specified by:
getTrimSpaces
in interfaceOptions
-
isPoolingEnabled
public boolean isPoolingEnabled()
Description copied from interface:Options
Returns true if tag handler pooling is enabled, false otherwise.- Specified by:
isPoolingEnabled
in interfaceOptions
-
getMappedFile
public boolean getMappedFile()
Are we supporting HTML mapped servlets?- Specified by:
getMappedFile
in interfaceOptions
-
getSendErrorToClient
public boolean getSendErrorToClient()
Should errors be sent to client or thrown into stderr?- Specified by:
getSendErrorToClient
in interfaceOptions
-
getClassDebugInfo
public boolean getClassDebugInfo()
Should class files be compiled with debug information?- Specified by:
getClassDebugInfo
in interfaceOptions
-
getCheckInterval
public int getCheckInterval()
Background JSP compile thread check intervall- Specified by:
getCheckInterval
in interfaceOptions
-
getModificationTestInterval
public int getModificationTestInterval()
Modification test interval.- Specified by:
getModificationTestInterval
in interfaceOptions
-
getDevelopment
public boolean getDevelopment()
Is Jasper being used in development mode?- Specified by:
getDevelopment
in interfaceOptions
-
isSmapSuppressed
public boolean isSmapSuppressed()
Is the generation of SMAP info for JSR45 debuggin suppressed?- Specified by:
isSmapSuppressed
in interfaceOptions
-
isSmapDumped
public boolean isSmapDumped()
Should SMAP info for JSR45 debugging be dumped to a file?- Specified by:
isSmapDumped
in interfaceOptions
-
genStringAsCharArray
public boolean genStringAsCharArray()
Are Text strings to be generated as char arrays?- Specified by:
genStringAsCharArray
in interfaceOptions
-
genStringAsByteArray
public boolean genStringAsByteArray()
Description copied from interface:Options
Are text strings to be generated as byte arrays, if the page is unbuffered?- Specified by:
genStringAsByteArray
in interfaceOptions
-
isDefaultBufferNone
public boolean isDefaultBufferNone()
Description copied from interface:Options
If the buffer attribute for the page directive is not specified, is the default "none"?- Specified by:
isDefaultBufferNone
in interfaceOptions
-
getIeClassId
public String getIeClassId()
Class ID for use in the plugin tag when the browser is IE.- Specified by:
getIeClassId
in interfaceOptions
-
getScratchDir
public File getScratchDir()
What is my scratch dir?- Specified by:
getScratchDir
in interfaceOptions
-
getClassPath
public String getClassPath()
What classpath should I use while compiling the servlets generated from JSP files?- Specified by:
getClassPath
in interfaceOptions
-
getSystemClassPath
public String getSystemClassPath()
Gets the system class path.- Specified by:
getSystemClassPath
in interfaceOptions
- Returns:
- The system class path
-
isXpoweredBy
public boolean isXpoweredBy()
Is generation of X-Powered-By response header enabled/disabled?- Specified by:
isXpoweredBy
in interfaceOptions
-
getCompiler
public String getCompiler()
Compiler to use.- Specified by:
getCompiler
in interfaceOptions
-
getCompilerTargetVM
public String getCompilerTargetVM()
Description copied from interface:Options
The compiler target VM, e.g. 1.1, 1.2, 1.3, 1.4, or 1.5.- Specified by:
getCompilerTargetVM
in interfaceOptions
- See Also:
Options.getCompilerTargetVM()
-
getCompilerSourceVM
public String getCompilerSourceVM()
Description copied from interface:Options
Compiler source VM, e.g. 1.3, 1.4, or 1.5.- Specified by:
getCompilerSourceVM
in interfaceOptions
- See Also:
Options.getCompilerSourceVM()
-
getCompilerClassName
public String getCompilerClassName()
Description copied from interface:Options
The name of class that implements JavaCompiler, used for Java compilations.- Specified by:
getCompilerClassName
in interfaceOptions
- See Also:
Options#getCompilerName
-
getErrorOnUseBeanInvalidClassAttribute
public boolean getErrorOnUseBeanInvalidClassAttribute()
Description copied from interface:Options
Returns true if Jasper issues a compilation error instead of a runtime Instantiation error if the class attribute specified in useBean action is invalid.- Specified by:
getErrorOnUseBeanInvalidClassAttribute
in interfaceOptions
-
setErrorOnUseBeanInvalidClassAttribute
public void setErrorOnUseBeanInvalidClassAttribute(boolean b)
-
getTldScanner
public TldScanner getTldScanner()
Description copied from interface:Options
The cache for the location of the TLD's for the various tag libraries 'exposed' by the web application. A tag library is 'exposed' either explicitely in web.xml or implicitely via the uri tag in the TLD of a taglib deployed in a jar file (WEB-INF/lib).- Specified by:
getTldScanner
in interfaceOptions
- Returns:
- the instance of the TldScanner for the web-application.
-
getJavaEncoding
public String getJavaEncoding()
Description copied from interface:Options
Java platform encoding to generate the JSP page servlet.- Specified by:
getJavaEncoding
in interfaceOptions
-
getFork
public boolean getFork()
Description copied from interface:Options
boolean flag to tell Ant whether to fork JSP page compilations.
-
getJspConfig
public JspConfig getJspConfig()
Description copied from interface:Options
Obtain JSP configuration informantion specified in web.xml.- Specified by:
getJspConfig
in interfaceOptions
-
getTagPluginManager
public TagPluginManager getTagPluginManager()
Description copied from interface:Options
Obtain a Tag Plugin Manager- Specified by:
getTagPluginManager
in interfaceOptions
-
getInitialCapacity
public int getInitialCapacity()
Gets initial capacity of HashMap which maps JSPs to their corresponding servlets.- Specified by:
getInitialCapacity
in interfaceOptions
-
getUsePrecompiled
public boolean getUsePrecompiled()
Returns the value of the usePrecompiled (or use-precompiled) init param.- Specified by:
getUsePrecompiled
in interfaceOptions
-
isValidationEnabled
public boolean isValidationEnabled()
- Specified by:
isValidationEnabled
in interfaceOptions
-
-