Package org.apache.jasper
Class EmbeddedServletOptions
- java.lang.Object
-
- org.apache.jasper.EmbeddedServletOptions
-
-
Field Summary
Fields Modifier and Type Field Description booleanforkShould Ant fork its java compiles of JSP pages.
-
Constructor Summary
Constructors Constructor Description EmbeddedServletOptions(ServletConfig config, 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 booleangenStringAsCharArray()Indicates whether text strings are to be generated as char arrays.java.util.Map<java.lang.String,TagLibraryInfo>getCache()The web-application wide cache for the TagLibraryInfo tag library descriptors, used ifOptions.isCaching()returnstrue.intgetCheckInterval()Returns the interval in seconds at which the background compile thread checks for modified JSP files.booleangetClassDebugInfo()Returns whether debug information is included in compiled classes.java.lang.StringgetClassPath()Returns the classpath used by the compiler when compiling generated Servlets.java.lang.StringgetCompiler()Compiler to use.java.lang.StringgetCompilerClassName()Returns the fully qualified class name of the Jasper Java compiler implementation to use.java.lang.StringgetCompilerSourceVM()Returns the source Java VM version for the compiler, such as 1.8.java.lang.StringgetCompilerTargetVM()Returns the target Java VM version for the compiler, such as 1.8.booleangetDevelopment()Main development flag, which enables detailed error reports with sources, as well automatic recompilation of JSPs and tag files.booleangetDisplaySourceFragment()Returns whether a source fragment should be included in exception messages for debugging.booleangetErrorOnUseBeanInvalidClassAttribute()Returns 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.java.lang.StringgetGeneratedJspPackageName()Returns the default package name for compiled JSP pages.java.lang.StringgetGeneratedTagFilePackageName()Returns the default package name for tag handlers generated from tag files.java.lang.StringgetJavaEncoding()Returns the Java platform character encoding used when generating the JSP page servlet source.JspConfiggetJspConfig()Returns the JSP configuration information as specified in the web.xml deployment descriptor.intgetJspIdleTimeout()Returns the idle timeout for JSP unloading.java.lang.StringgetJspPrecompilationQueryParameter()Returns the query parameter name that triggers JSP pre-compilation.java.lang.StringgetJspServletBase()Returns the default base class for generated JSP servlets.booleangetKeepGenerated()Returns whether the generated Java source files should be kept after compilation.booleangetMappedFile()Returns whether HTML mapped Servlets are supported.intgetMaxLoadedJsps()The maximum number of loaded jsps per web-application.intgetModificationTestInterval()Returns the interval in seconds between modification tests for JSP files.booleangetPoolTagsWithExtends()Returns whether tag pooling is allowed on JSP pages that use the extends directive.java.lang.StringgetProperty(java.lang.String name)Gets the value of the named property from the underlying settings.booleangetQuoteAttributeEL()Returns whether quoting rules from JSP.1.6 are applied to EL expressions in attributes.booleangetRecompileOnFail()Returns whether the JSP engine should attempt re-compilation when an initial compilation fails.java.io.FilegetScratchDir()Returns the scratch directory used as the work folder for temporary compilation files.java.lang.StringgetServiceMethodName()_jspService is the name of the method that is called by HttpJspBase.service().java.lang.StringgetServletClasspathAttribute()Returns the ServletContext attribute name used for the classpath.booleangetStrictGetProperty()Returns 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.booleangetStrictQuoteEscaping()Returns whether strict quote escaping is enabled for scriplet expressions.booleangetStrictWhitespace()Returns whether strict whitespace handling rules are applied during JSP compilation.TagPluginManagergetTagPluginManager()Returns the Tag Plugin Manager used for applying tag plugins during JSP compilation.java.lang.StringgetTempVariableNamePrefix()Returns the prefix used for generated temporary variable names.TldCachegetTldCache()The cache that maps URIs, resource paths and parsed TLD files for the various tag libraries 'exposed' by the web application.TrimSpacesOptiongetTrimSpaces()Returns the option for trimming whitespace-only template text.booleangetUseInstanceManagerForTags()Returns whether the container instance manager is used to create tag bean instances.java.lang.StringgetUseNonstandardTagOptimizations()A string containing a comma-separated list of names to which custom tag implementations should be applied.java.lang.StringgetVariableForExpressionFactory()Returns the variable name used in the generated JSP servlet code to reference the EL expression factory.java.lang.StringgetVariableForInstanceManager()Returns the variable name used in the generated JSP servlet code to reference the instance manager.booleanisCaching()Returns whether caching is enabled for compiled JSP pages, used for precompilation scenarios.booleanisPoolingEnabled()Returns whether tag handler pooling is enabled for improved performance.booleanisSmapDumped()This setting is ignored if suppressSmap() istrue.booleanisSmapSuppressed()Returns whether generation of SMAP (Source Map for Debugging) information is suppressed.booleanisXpoweredBy()Returns 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(java.lang.String name, java.lang.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 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.jasper.Options
getGeneratedJavaAddTimestamp
-
-
-
-
Constructor Detail
-
EmbeddedServletOptions
public EmbeddedServletOptions(ServletConfig config, ServletContext context)
Create an EmbeddedServletOptions object using data available from ServletConfig and ServletContext.- Parameters:
config- The Servlet configcontext- The Servlet context
-
-
Method Detail
-
getProperty
public java.lang.String getProperty(java.lang.String name)
Gets the value of the named property from the underlying settings.- Parameters:
name- the property name- Returns:
- the property value, or
nullif not set
-
setProperty
public void setProperty(java.lang.String name, java.lang.String value)Sets the value of the named property in the underlying settings.- Parameters:
name- the property namevalue- the property value
-
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
public TrimSpacesOption 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
public java.io.File 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
public java.lang.String 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
public java.lang.String 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
public java.lang.String 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
public java.lang.String 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
public java.lang.String 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
public TldCache 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
public void setTldCache(TldCache tldCache)
Sets the TLD cache instance.- Parameters:
tldCache- the TLD cache to use
-
getJavaEncoding
public java.lang.String 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
public JspConfig 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
public TagPluginManager 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
public boolean isCaching()
Description copied from interface:OptionsReturns whether caching is enabled for compiled JSP pages, used for precompilation scenarios.
-
getCache
public java.util.Map<java.lang.String,TagLibraryInfo> 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
public java.lang.String 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
public java.lang.String 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
public java.lang.String 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
public java.lang.String 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
public java.lang.String 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
public java.lang.String 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
public java.lang.String 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
public java.lang.String 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
public java.lang.String 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
public java.lang.String 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
-
-