Class EmbeddedServletOptions
java.lang.Object
org.apache.jasper.EmbeddedServletOptions
- All Implemented Interfaces:
Options
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionEmbeddedServletOptions(ServletConfig config, ServletContext context) Create an EmbeddedServletOptions object using data available from ServletConfig and ServletContext. -
Method Summary
Modifier and TypeMethodDescriptionbooleanIndicates whether text strings are to be generated as char arrays.getCache()The web-application wide cache for the TagLibraryInfo tag library descriptors, used ifOptions.isCaching()returnstrue.intReturns the interval in seconds at which the background compile thread checks for modified JSP files.booleanReturns whether debug information is included in compiled classes.Returns the classpath used by the compiler when compiling generated Servlets.Compiler to use.Returns the fully qualified class name of the Jasper Java compiler implementation to use.Returns the source Java VM version for the compiler, such as 1.8.Returns the target Java VM version for the compiler, such as 1.8.booleanMain development flag, which enables detailed error reports with sources, as well automatic recompilation of JSPs and tag files.booleanReturns whether a source fragment should be included in exception messages for debugging.booleanReturns true if Jasper issues a compilation error instead of a runtime Instantiation error if the class attribute specified in useBean action is invalid.booleangetFork()The boolean flag to tell Ant whether to fork JSP page compilations.Returns the default package name for compiled JSP pages.Returns the default package name for tag handlers generated from tag files.Returns the Java platform character encoding used when generating the JSP page servlet source.Returns the JSP configuration information as specified in the web.xml deployment descriptor.intReturns the idle timeout for JSP unloading.Returns the query parameter name that triggers JSP pre-compilation.Returns the default base class for generated JSP servlets.booleanReturns whether the generated Java source files should be kept after compilation.booleanReturns whether HTML mapped Servlets are supported.intThe maximum number of loaded jsps per web-application.intReturns the interval in seconds between modification tests for JSP files.booleanReturns whether tag pooling is allowed on JSP pages that use the extends directive.getProperty(String name) Gets the value of the named property from the underlying settings.booleanReturns whether quoting rules from JSP.1.6 are applied to EL expressions in attributes.booleanReturns whether the JSP engine should attempt re-compilation when an initial compilation fails.Returns the scratch directory used as the work folder for temporary compilation files._jspService is the name of the method that is called by HttpJspBase.service().Returns the ServletContext attribute name used for the classpath.booleanReturns whether strict enforcement of the JSP.5.3 requirement is applied, requiring objects used in jsp:getProperty to be previously introduced to the JSP processor.booleanReturns whether strict quote escaping is enabled for scriplet expressions.booleanReturns whether strict whitespace handling rules are applied during JSP compilation.Returns the Tag Plugin Manager used for applying tag plugins during JSP compilation.Returns the prefix used for generated temporary variable names.The cache that maps URIs, resource paths and parsed TLD files for the various tag libraries 'exposed' by the web application.Returns the option for trimming whitespace-only template text.booleanReturns whether the container instance manager is used to create tag bean instances.A string containing a comma-separated list of names to which custom tag implementations should be applied.Returns the variable name used in the generated JSP servlet code to reference the EL expression factory.Returns the variable name used in the generated JSP servlet code to reference the instance manager.booleanReturns whether caching is enabled for compiled JSP pages, used for precompilation scenarios.booleanReturns whether tag handler pooling is enabled for improved performance.booleanThis setting is ignored if suppressSmap() istrue.booleanReturns whether generation of SMAP (Source Map for Debugging) information is suppressed.booleanReturns whether the X-Powered-By response header should be generated in HTTP responses.voidsetErrorOnUseBeanInvalidClassAttribute(boolean b) Sets whether to error on invalid class attribute in jsp:useBean.voidsetProperty(String name, String value) Sets the value of the named property in the underlying settings.voidsetQuoteAttributeEL(boolean b) Sets whether quoting rules from JSP.1.6 are applied to EL expressions in attributes.voidsetTldCache(TldCache tldCache) Sets the TLD cache instance.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Options
getGeneratedJavaAddTimestamp
-
Field Details
-
fork
public boolean forkShould Ant fork its java compiles of JSP pages.
-
-
Constructor Details
-
EmbeddedServletOptions
Create an EmbeddedServletOptions object using data available from ServletConfig and ServletContext.- Parameters:
config- The Servlet configcontext- The Servlet context
-
-
Method Details
-
getProperty
-
setProperty
-
setQuoteAttributeEL
public void setQuoteAttributeEL(boolean b) Sets whether quoting rules from JSP.1.6 are applied to EL expressions in attributes.- Parameters:
b-trueto enable quoting rules
-
getQuoteAttributeEL
public boolean getQuoteAttributeEL()Description copied from interface:OptionsReturns whether quoting rules from JSP.1.6 are applied to EL expressions in attributes.- Specified by:
getQuoteAttributeELin interfaceOptions- Returns:
trueif EL expressions used within attributes should have the quoting rules in JSP.1.6 applied to the expression.
-
getKeepGenerated
public boolean getKeepGenerated()Description copied from interface:OptionsReturns whether the generated Java source files should be kept after compilation.- Specified by:
getKeepGeneratedin interfaceOptions- Returns:
trueto keep the generated source
-
getTrimSpaces
Description copied from interface:OptionsReturns the option for trimming whitespace-only template text.- Specified by:
getTrimSpacesin interfaceOptions- Returns:
TrimSpacesOption.TRUEto remove template text that consists only of whitespace from the output completely,TrimSpacesOption.SINGLEto replace such template text with a single space,TrimSpacesOption.FALSEto leave such template text unchanged orTrimSpacesOption.EXTENDEDto remove template text that consists only of whitespace and to replace any sequence of whitespace and new lines within template text with a single new line.
-
isPoolingEnabled
public boolean isPoolingEnabled()Description copied from interface:OptionsReturns whether tag handler pooling is enabled for improved performance.- Specified by:
isPoolingEnabledin interfaceOptions- Returns:
trueif tag handler pooling is enabled,falseotherwise.
-
getMappedFile
public boolean getMappedFile()Description copied from interface:OptionsReturns whether HTML mapped Servlets are supported.- Specified by:
getMappedFilein interfaceOptions- Returns:
trueif HTML mapped Servlets are supported.
-
getClassDebugInfo
public boolean getClassDebugInfo()Description copied from interface:OptionsReturns whether debug information is included in compiled classes.- Specified by:
getClassDebugInfoin interfaceOptions- Returns:
trueif debug information in included in compiled classes.
-
getCheckInterval
public int getCheckInterval()Description copied from interface:OptionsReturns the interval in seconds at which the background compile thread checks for modified JSP files.- Specified by:
getCheckIntervalin interfaceOptions- Returns:
- background compile thread check interval in seconds
-
getModificationTestInterval
public int getModificationTestInterval()Description copied from interface:OptionsReturns the interval in seconds between modification tests for JSP files.- Specified by:
getModificationTestIntervalin interfaceOptions- Returns:
- modification test interval in seconds.
-
getRecompileOnFail
public boolean getRecompileOnFail()Description copied from interface:OptionsReturns whether the JSP engine should attempt re-compilation when an initial compilation fails.- Specified by:
getRecompileOnFailin interfaceOptions- Returns:
trueif re-compile will occur on a failure.
-
getDevelopment
public boolean getDevelopment()Description copied from interface:OptionsMain development flag, which enables detailed error reports with sources, as well automatic recompilation of JSPs and tag files. This setting should usually befalsewhen running in production.- Specified by:
getDevelopmentin interfaceOptions- Returns:
trueif Jasper is in development mode
-
isSmapSuppressed
public boolean isSmapSuppressed()Description copied from interface:OptionsReturns whether generation of SMAP (Source Map for Debugging) information is suppressed.- Specified by:
isSmapSuppressedin interfaceOptions- Returns:
trueto suppress generation of SMAP info for JSR45 debugging.
-
isSmapDumped
public boolean isSmapDumped()Description copied from interface:OptionsThis setting is ignored if suppressSmap() istrue.- Specified by:
isSmapDumpedin interfaceOptions- Returns:
trueto write SMAP info for JSR45 debugging to a file.
-
genStringAsCharArray
public boolean genStringAsCharArray()Description copied from interface:OptionsIndicates whether text strings are to be generated as char arrays.- Specified by:
genStringAsCharArrayin interfaceOptions- Returns:
trueif text strings are to be generated as char arrays,falseotherwise
-
getScratchDir
Description copied from interface:OptionsReturns the scratch directory used as the work folder for temporary compilation files.- Specified by:
getScratchDirin interfaceOptions- Returns:
- the work folder
-
getClassPath
Description copied from interface:OptionsReturns the classpath used by the compiler when compiling generated Servlets.- Specified by:
getClassPathin interfaceOptions- Returns:
- the classpath used to compile generated Servlets
-
isXpoweredBy
public boolean isXpoweredBy()Description copied from interface:OptionsReturns whether the X-Powered-By response header should be generated in HTTP responses.- Specified by:
isXpoweredByin interfaceOptions- Returns:
trueto generate a X-Powered-By response header.
-
getCompiler
Description copied from interface:OptionsCompiler to use.If
null(the default), the java compiler from Eclipse JDT project, bundled with Tomcat, will be used. Otherwise, thejavactask from Apache Ant will be used to call an external java compiler and the value of this option will be passed to it. See Apache Ant documentation for the possible values.- Specified by:
getCompilerin interfaceOptions- Returns:
- the compiler name
-
getCompilerTargetVM
Description copied from interface:OptionsReturns the target Java VM version for the compiler, such as 1.8.- Specified by:
getCompilerTargetVMin interfaceOptions- Returns:
- the compiler target VM, e.g. 1.8.
-
getCompilerSourceVM
Description copied from interface:OptionsReturns the source Java VM version for the compiler, such as 1.8.- Specified by:
getCompilerSourceVMin interfaceOptions- Returns:
- the compiler source VM, e.g. 1.8.
-
getCompilerClassName
Description copied from interface:OptionsReturns the fully qualified class name of the Jasper Java compiler implementation to use.- Specified by:
getCompilerClassNamein interfaceOptions- Returns:
- Jasper Java compiler class to use.
-
getErrorOnUseBeanInvalidClassAttribute
public boolean getErrorOnUseBeanInvalidClassAttribute()Description copied from interface:OptionsReturns 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:
getErrorOnUseBeanInvalidClassAttributein interfaceOptions- Returns:
trueto get an error
-
setErrorOnUseBeanInvalidClassAttribute
public void setErrorOnUseBeanInvalidClassAttribute(boolean b) Sets whether to error on invalid class attribute in jsp:useBean.- Parameters:
b-trueto enable error checking
-
getTldCache
Description copied from interface:OptionsThe cache that maps URIs, resource paths and parsed TLD files for the various tag libraries 'exposed' by the web application. A tag library is 'exposed' either explicitly in web.xml or implicitly via the uri tag in the TLD of a taglib deployed in a jar file (WEB-INF/lib).- Specified by:
getTldCachein interfaceOptions- Returns:
- the instance of the TldCache for the web-application.
-
setTldCache
Sets the TLD cache instance.- Parameters:
tldCache- the TLD cache to use
-
getJavaEncoding
Description copied from interface:OptionsReturns the Java platform character encoding used when generating the JSP page servlet source.- Specified by:
getJavaEncodingin interfaceOptions- Returns:
- Java platform encoding to generate the JSP page servlet.
-
getFork
public boolean getFork()Description copied from interface:OptionsThe boolean flag to tell Ant whether to fork JSP page compilations.Is used only when Jasper uses an external java compiler (wrapped through a
javacApache Ant task). -
getJspConfig
Description copied from interface:OptionsReturns the JSP configuration information as specified in the web.xml deployment descriptor.- Specified by:
getJspConfigin interfaceOptions- Returns:
- JSP configuration information specified in web.xml.
-
getTagPluginManager
Description copied from interface:OptionsReturns the Tag Plugin Manager used for applying tag plugins during JSP compilation.- Specified by:
getTagPluginManagerin interfaceOptions- Returns:
- a Tag Plugin Manager
-
isCaching
-
getCache
Description copied from interface:OptionsThe web-application wide cache for the TagLibraryInfo tag library descriptors, used ifOptions.isCaching()returnstrue.Using this cache avoids the cost of repeating the parsing of a tag library descriptor XML file (performed by TagLibraryInfoImpl.parseTLD).
-
getDisplaySourceFragment
public boolean getDisplaySourceFragment()Description copied from interface:OptionsReturns whether a source fragment should be included in exception messages for debugging.- Specified by:
getDisplaySourceFragmentin interfaceOptions- Returns:
trueto include a source fragment in exception messages.
-
getMaxLoadedJsps
public int getMaxLoadedJsps()Description copied from interface:OptionsThe maximum number of loaded jsps per web-application. If there are more jsps loaded, they will be unloaded. If unset or less than 0, no jsps are unloaded.- Specified by:
getMaxLoadedJspsin interfaceOptions- Returns:
- The JSP count
-
getJspIdleTimeout
public int getJspIdleTimeout()Description copied from interface:OptionsReturns the idle timeout for JSP unloading.- Specified by:
getJspIdleTimeoutin interfaceOptions- Returns:
- the idle time in seconds after which a JSP is unloaded. If unset or less or equal than 0, no jsps are unloaded.
-
getStrictQuoteEscaping
public boolean getStrictQuoteEscaping()Description copied from interface:OptionsReturns whether strict quote escaping is enabled for scriplet expressions.- Specified by:
getStrictQuoteEscapingin interfaceOptions- Returns:
trueif the quote escaping required by section JSP.1.6 of the JSP specification should be applied to scriplet expression.
-
getVariableForExpressionFactory
Description copied from interface:OptionsReturns the variable name used in the generated JSP servlet code to reference the EL expression factory.- Specified by:
getVariableForExpressionFactoryin interfaceOptions- Returns:
- the name of the variable that will be used in the generated JSP code for the expression factory
-
getVariableForInstanceManager
Description copied from interface:OptionsReturns the variable name used in the generated JSP servlet code to reference the instance manager.- Specified by:
getVariableForInstanceManagerin interfaceOptions- Returns:
- the name of the variable that will be used in the generated JSP code for the instance manager
-
getPoolTagsWithExtends
public boolean getPoolTagsWithExtends()Description copied from interface:OptionsReturns whether tag pooling is allowed on JSP pages that use the extends directive.- Specified by:
getPoolTagsWithExtendsin interfaceOptions- Returns:
trueif tag pooling is disabled with page that uses extends.
-
getStrictGetProperty
public boolean getStrictGetProperty()Description copied from interface:OptionsReturns whether strict enforcement of the JSP.5.3 requirement is applied, requiring objects used in jsp:getProperty to be previously introduced to the JSP processor.- Specified by:
getStrictGetPropertyin interfaceOptions- Returns:
trueif the requirement to have the object used in jsp:getProperty action to be previously "introduced" to the JSP processor (see JSP.5.3) is enforced.
-
getStrictWhitespace
public boolean getStrictWhitespace()Description copied from interface:OptionsReturns whether strict whitespace handling rules are applied during JSP compilation.- Specified by:
getStrictWhitespacein interfaceOptions- Returns:
trueif the strict white space rules are applied.
-
getJspServletBase
Description copied from interface:OptionsReturns the default base class for generated JSP servlets.- Specified by:
getJspServletBasein interfaceOptions- Returns:
- the default base class for generated JSP Servlets
-
getServiceMethodName
Description copied from interface:Options_jspService is the name of the method that is called by HttpJspBase.service(). This is where most of the code generated from JSPs go.- Specified by:
getServiceMethodNamein interfaceOptions- Returns:
- the method name
-
getServletClasspathAttribute
Description copied from interface:OptionsReturns the ServletContext attribute name used for the classpath.- Specified by:
getServletClasspathAttributein interfaceOptions- Returns:
- ServletContext 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.
-
getJspPrecompilationQueryParameter
Description copied from interface:OptionsReturns the query parameter name that triggers JSP pre-compilation.- Specified by:
getJspPrecompilationQueryParameterin interfaceOptions- Returns:
- The query parameter that causes the JSP engine to just pregenerated the servlet but not invoke it.
-
getGeneratedJspPackageName
Description copied from interface:OptionsReturns the default package name for compiled JSP pages.- Specified by:
getGeneratedJspPackageNamein interfaceOptions- Returns:
- The default package name for compiled jsp pages.
-
getGeneratedTagFilePackageName
Description copied from interface:OptionsReturns the default package name for tag handlers generated from tag files.- Specified by:
getGeneratedTagFilePackageNamein interfaceOptions- Returns:
- The default package name for tag handlers generated from tag files.
-
getTempVariableNamePrefix
Description copied from interface:OptionsReturns the prefix used for generated temporary variable names.- Specified by:
getTempVariableNamePrefixin interfaceOptions- Returns:
- Prefix to use for generated temporary variable names
-
getUseInstanceManagerForTags
public boolean getUseInstanceManagerForTags()Description copied from interface:OptionsReturns whether the container instance manager is used to create tag bean instances.- Specified by:
getUseInstanceManagerForTagsin interfaceOptions- Returns:
trueif the container instance manager will be used to create the bean instances
-
getUseNonstandardTagOptimizations
Description copied from interface:OptionsA string containing a comma-separated list of names to which custom tag implementations should be applied. Unknown or unused tag entries are harmless. Generally defined via an init parameter on the JspServlet.- Specified by:
getUseNonstandardTagOptimizationsin interfaceOptions- Returns:
- which tags to use
-