Class StandardContext
- java.lang.Object
-
- org.apache.catalina.util.LifecycleBase
-
- org.apache.catalina.util.LifecycleMBeanBase
-
- org.apache.catalina.core.ContainerBase
-
- org.apache.catalina.core.StandardContext
-
- All Implemented Interfaces:
javax.management.MBeanRegistration
,javax.management.NotificationBroadcaster
,javax.management.NotificationEmitter
,Container
,Context
,JmxEnabled
,Lifecycle
,ContextBind
- Direct Known Subclasses:
ReplicatedContext
public class StandardContext extends ContainerBase implements Context, javax.management.NotificationEmitter
Standard implementation of the Context interface. Each child container must be a Wrapper implementation to process the requests directed to a particular servlet.- Author:
- Craig R. McClanahan, Remy Maucherat
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.catalina.core.ContainerBase
ContainerBase.ContainerBackgroundProcessor, ContainerBase.ContainerBackgroundProcessorMonitor, ContainerBase.PrivilegedAddChild
-
Nested classes/interfaces inherited from interface org.apache.catalina.Lifecycle
Lifecycle.SingleUse
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
allowCasualMultipartParsing
Allow multipart/form-data requests to be parsed even when the target servlet doesn't specify @MultipartConfig or have a <multipart-config> element.protected ApplicationContext
context
The ServletContext implementation associated with this Context.protected static ThreadBindingListener
DEFAULT_NAMING_LISTENER
protected Manager
manager
The Manager implementation with which this Container is associated.protected ThreadBindingListener
threadBindingListener
-
Fields inherited from class org.apache.catalina.core.ContainerBase
accessLog, backgroundProcessorDelay, backgroundProcessorFuture, children, cluster, listeners, logger, logName, monitorFuture, name, parent, parentClassLoader, pipeline, sm, startChildren, startStopExecutor, support
-
Fields inherited from interface org.apache.catalina.Container
ADD_CHILD_EVENT, ADD_VALVE_EVENT, REMOVE_CHILD_EVENT, REMOVE_VALVE_EVENT
-
Fields inherited from interface org.apache.catalina.Context
ADD_WELCOME_FILE_EVENT, CHANGE_SESSION_ID_EVENT, CLEAR_WELCOME_FILES_EVENT, REMOVE_WELCOME_FILE_EVENT
-
Fields inherited from interface org.apache.catalina.Lifecycle
AFTER_DESTROY_EVENT, AFTER_INIT_EVENT, AFTER_START_EVENT, AFTER_STOP_EVENT, BEFORE_DESTROY_EVENT, BEFORE_INIT_EVENT, BEFORE_START_EVENT, BEFORE_STOP_EVENT, CONFIGURE_START_EVENT, CONFIGURE_STOP_EVENT, PERIODIC_EVENT, START_EVENT, STOP_EVENT
-
-
Constructor Summary
Constructors Constructor Description StandardContext()
Create a new StandardContext component with the default basic Valve.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
addApplicationEventListener(java.lang.Object listener)
Add a listener to the end of the list of initialized application event listeners.void
addApplicationLifecycleListener(java.lang.Object listener)
Add a listener to the end of the list of initialized application lifecycle listeners.void
addApplicationListener(java.lang.String listener)
Add a new Listener class name to the set of Listeners configured for this application.void
addApplicationParameter(ApplicationParameter parameter)
Add a new application parameter for this application.void
addChild(Container child)
Add a child Container, only if the proposed child is an implementation of Wrapper.void
addConstraint(SecurityConstraint constraint)
Add a security constraint to the set for this web application.void
addErrorPage(ErrorPage errorPage)
Add an error page for the specified error or Java exception.void
addFilterDef(FilterDef filterDef)
Add a filter definition to this Context.void
addFilterMap(FilterMap filterMap)
Add a filter mapping to this Context at the end of the current set of filter mappings.void
addFilterMapBefore(FilterMap filterMap)
Add a filter mapping to this Context before the mappings defined in the deployment descriptor but after any other mappings added via this method.void
addLocaleEncodingMappingParameter(java.lang.String locale, java.lang.String encoding)
Add a Locale Encoding Mapping (see Sec 5.4 of Servlet spec 2.4)void
addMessageDestination(MessageDestination md)
Add a message destination for this web application.void
addMimeMapping(java.lang.String extension, java.lang.String mimeType)
Add a new MIME mapping, replacing any existing mapping for the specified extension.void
addNotificationListener(javax.management.NotificationListener listener, javax.management.NotificationFilter filter, java.lang.Object object)
Add a JMX NotificationListenervoid
addParameter(java.lang.String name, java.lang.String value)
Add a new context initialization parameter.void
addPostConstructMethod(java.lang.String clazz, java.lang.String method)
Add a post construct method definition for the given class, if there is an existing definition for the specified class - IllegalArgumentException will be thrown.void
addPreDestroyMethod(java.lang.String clazz, java.lang.String method)
Add a pre destroy method definition for the given class, if there is an existing definition for the specified class - IllegalArgumentException will be thrown.void
addRoleMapping(java.lang.String role, java.lang.String link)
Add a security role reference for this web application.void
addSecurityRole(java.lang.String role)
Add a new security role for this web application.void
addServletContainerInitializer(ServletContainerInitializer sci, java.util.Set<java.lang.Class<?>> classes)
Add a ServletContainerInitializer instance to this web application.void
addServletMappingDecoded(java.lang.String pattern, java.lang.String name, boolean jspWildCard)
Add a new servlet mapping, replacing any existing mapping for the specified pattern.java.util.Set<java.lang.String>
addServletSecurity(ServletRegistration.Dynamic registration, ServletSecurityElement servletSecurityElement)
Notification that Servlet security has been dynamically set in aServletRegistration.Dynamic
void
addWatchedResource(java.lang.String name)
Add a new watched resource to the set recognized by this Context.void
addWelcomeFile(java.lang.String name)
Add a new welcome file to the set recognized by this Context.void
addWrapperLifecycle(java.lang.String listener)
Add the classname of a LifecycleListener to be added to each Wrapper appended to this Context.void
addWrapperListener(java.lang.String listener)
Add the classname of a ContainerListener to be added to each Wrapper appended to this Context.protected java.lang.String
adjustURLPattern(java.lang.String urlPattern)
Adjust the URL pattern to begin with a leading slash, if appropriate (i.e. we are running a servlet 2.2 application).void
backgroundProcess()
Execute a periodic task, such as reloading, etc.java.lang.ClassLoader
bind(boolean usePrivilegedAction, java.lang.ClassLoader originalClassLoader)
Change the current thread context class loader to the web application class loader.protected java.lang.ClassLoader
bindThread()
Bind current thread, both for CL purposes and for JNDI ENC support during : startup, shutdown and reloading of the context.InstanceManager
createInstanceManager()
Factory method to create and return a new InstanceManager instance.Wrapper
createWrapper()
Factory method to create and return a new Wrapper instance, of the Java implementation class appropriate for this Context implementation.void
decrementInProgressAsyncCount()
protected void
destroyInternal()
Destroy needs to clean up the context completely.void
dynamicServletCreated(Servlet servlet)
Hook to track which Servlets were created viaServletContext.createServlet(Class)
.boolean
filterStart()
Configure and initialize the set of filters for this Context.boolean
filterStop()
Finalize and release the set of filters for this Context.java.lang.String[]
findApplicationListeners()
Return the set of application listener class names configured for this application.ApplicationParameter[]
findApplicationParameters()
Return the set of application parameters for this application.SecurityConstraint[]
findConstraints()
Return the security constraints for this web application.ErrorPage
findErrorPage(int errorCode)
Return the error page entry for the specified HTTP error code, if any; otherwise returnnull
.ErrorPage
findErrorPage(java.lang.Throwable exceptionType)
Find and return the ErrorPage instance for the specified exception's class, or an ErrorPage instance for the closest superclass for which there is such a definition.ErrorPage[]
findErrorPages()
Return the set of defined error pages for all specified error codes and exception types.FilterConfig
findFilterConfig(java.lang.String name)
Find and return the initializedFilterConfig
for the specified filter name, if any; otherwise returnnull
.FilterDef
findFilterDef(java.lang.String filterName)
Return the filter definition for the specified filter name, if any; otherwise returnnull
.FilterDef[]
findFilterDefs()
FilterMap[]
findFilterMaps()
MessageDestination
findMessageDestination(java.lang.String name)
MessageDestination[]
findMessageDestinations()
java.lang.String
findMimeMapping(java.lang.String extension)
java.lang.String[]
findMimeMappings()
java.lang.String
findParameter(java.lang.String name)
java.lang.String[]
findParameters()
java.lang.String
findPostConstructMethod(java.lang.String clazz)
Returns the method name that is specified as post construct method for the given class, if it exists; otherwiseNULL
will be returned.java.util.Map<java.lang.String,java.lang.String>
findPostConstructMethods()
Returns a map with keys - fully qualified class names of the classes that have post construct methods and the values are the corresponding method names.java.lang.String
findPreDestroyMethod(java.lang.String clazz)
Returns the method name that is specified as pre destroy method for the given class, if it exists; otherwiseNULL
will be returned.java.util.Map<java.lang.String,java.lang.String>
findPreDestroyMethods()
Returns a map with keys - fully qualified class names of the classes that have pre destroy methods and the values are the corresponding method names.java.lang.String
findRoleMapping(java.lang.String role)
For the given security role (as used by an application), return the corresponding role name (as defined by the underlying Realm) if there is one.boolean
findSecurityRole(java.lang.String role)
java.lang.String[]
findSecurityRoles()
java.lang.String
findServletMapping(java.lang.String pattern)
java.lang.String[]
findServletMappings()
java.lang.String[]
findWatchedResources()
boolean
findWelcomeFile(java.lang.String name)
java.lang.String[]
findWelcomeFiles()
java.lang.String[]
findWrapperLifecycles()
java.lang.String[]
findWrapperListeners()
boolean
fireRequestDestroyEvent(ServletRequest request)
Notify allServletRequestListener
s that a request has ended.boolean
fireRequestInitEvent(ServletRequest request)
Notify allServletRequestListener
s that a request has started.boolean
getAddWebinfClassesResources()
boolean
getAllowCasualMultipartParsing()
Returnstrue
if requests mapped to servlets without "multipart config" to parse multipart/form-data requests anyway.boolean
getAllowMultipleLeadingForwardSlashInPath()
When returning a context path fromHttpServletRequest.getContextPath()
, is it allowed to contain multiple leading '/' characters?java.lang.String
getAltDDName()
Return the alternate Deployment Descriptor name.boolean
getAlwaysAccessSession()
If this istrue
, every request that is associated with a session will cause the session's last accessed time to be updated regardless of whether or not the request explicitly accesses the session.boolean
getAntiResourceLocking()
java.lang.Object[]
getApplicationEventListeners()
Obtain the registered application event listeners.java.lang.Object[]
getApplicationLifecycleListeners()
Obtain the registered application lifecycle listeners.Authenticator
getAuthenticator()
java.lang.String
getBaseName()
java.lang.String
getCharset(java.util.Locale locale)
Obtain the character set name to use with the given Locale.CharsetMapper
getCharsetMapper()
java.lang.String
getCharsetMapperClass()
boolean
getClearReferencesHttpClientKeepAliveThread()
boolean
getClearReferencesObjectStreamClassCaches()
boolean
getClearReferencesRmiTargets()
boolean
getClearReferencesStopThreads()
boolean
getClearReferencesStopTimerThreads()
boolean
getClearReferencesThreadLocals()
protected boolean
getComputedFailCtxIfServletStartFails()
java.net.URL
getConfigFile()
Return the URL of the XML descriptor for this context.boolean
getConfigured()
Return the "correctly configured" flag for this Context.java.lang.String
getContainerSciFilter()
Obtains the regular expression that specifies which container provided SCIs should be filtered out and not used for this context.boolean
getContextGetResourceRequiresSlash()
If this istrue
then the path passed toServletContext.getResource()
orServletContext.getResourceAsStream()
must start with "/".CookieProcessor
getCookieProcessor()
boolean
getCookies()
Return the "use cookies for session ids" flag.boolean
getCopyXML()
Flag which indicates if bundled context.xml files should be copied to the config folder.boolean
getCreateUploadTargets()
Will Tomcat attempt to create an upload target used by this web application if it does not exist when the web application attempts to use it?boolean
getCrossContext()
Return the "allow crossing servlet contexts" flag.java.lang.String
getDefaultContextXml()
java.lang.String
getDefaultWebXml()
boolean
getDelegate()
Return the "follow standard delegation model" flag used to configure our ClassLoader.boolean
getDenyUncoveredHttpMethods()
Return the deny-uncovered-http-methods flag for this web application.boolean
getDispatchersUseEncodedPaths()
Are paths used in calls to obtain a request dispatcher expected to be encoded?boolean
getDispatcherWrapsSameObject()
If this istrue
then any wrapped request or response object passed to an application dispatcher will be checked to ensure that it has wrapped the original request or response.java.lang.String
getDisplayName()
Return the display name of this web application.boolean
getDistributable()
Get the distributable flag for this web application.java.lang.String
getDocBase()
Obtain the document root for this Context.int
getEffectiveMajorVersion()
int
getEffectiveMinorVersion()
java.lang.String
getEncodedPath()
Return the URL encoded context pathint
getErrorCount()
Gets the cumulative error count of all servlets in this StandardContext.java.lang.Boolean
getFailCtxIfServletStartFails()
boolean
getFireRequestListenersOnForwards()
boolean
getIgnoreAnnotations()
Determine if annotations parsing is currently disabledlong
getInProgressAsyncCount()
InstanceManager
getInstanceManager()
java.lang.String
getJ2EEApplication()
java.lang.String
getJ2EEServer()
JarScanner
getJarScanner()
Get the Jar Scanner to be used to scan for JAR resources for this context.java.lang.String[]
getJavaVMs()
Deprecated.Unused.boolean
getJndiExceptionOnFailedWrite()
JspConfigDescriptor
getJspConfigDescriptor()
Loader
getLoader()
boolean
getLogEffectiveWebXml()
Should the effective web.xml for this context be logged on context start?LoginConfig
getLoginConfig()
Manager
getManager()
boolean
getMapperContextRootRedirectEnabled()
Determines if requests for a web application context root will be redirected (adding a trailing slash) by the Mapper.boolean
getMapperDirectoryRedirectEnabled()
Determines if requests for a directory will be redirected (adding a trailing slash) by the Mapper.long
getMaxTime()
Gets the maximum processing time of all servlets in this StandardContext.long
getMinTime()
Gets the minimum processing time of all servlets in this StandardContext.NamingContextListener
getNamingContextListener()
Naming context listener accessor.NamingResourcesImpl
getNamingResources()
java.lang.Object
getNamingToken()
javax.management.MBeanNotificationInfo[]
getNotificationInfo()
Get JMX Broadcaster Infoprotected java.lang.String
getObjectNameKeyProperties()
Allow sub-classes to specify the key properties component of theObjectName
that will be used to register this component.java.lang.String
getOriginalDocBase()
boolean
getOverride()
boolean
getParallelAnnotationScanning()
java.lang.ClassLoader
getParentClassLoader()
Return the parent class loader (if any) for this web application.java.lang.String
getPath()
boolean
getPaused()
Is this Context paused whilst it is reloaded?boolean
getPreemptiveAuthentication()
boolean
getPrivileged()
long
getProcessingTime()
Gets the cumulative processing times of all servlets in this StandardContext.java.lang.String
getPublicId()
java.lang.String
getRealPath(java.lang.String path)
Return the real path for a given virtual path, if possible; otherwise returnnull
.boolean
getReloadable()
boolean
getRenewThreadsWhenStoppingContext()
java.lang.String
getRequestCharacterEncoding()
Get the default request body encoding for this web application.int
getRequestCount()
Gets the cumulative request count of all servlets in this StandardContext.java.lang.String
getResourceOnlyServlets()
Obtains the list of Servlets that expect a resource to be present.WebResourceRoot
getResources()
java.lang.String
getResponseCharacterEncoding()
Get the default response body encoding for this web application.boolean
getSendRedirectBody()
java.lang.String
getServer()
ServletContext
getServletContext()
java.lang.String
getSessionCookieDomain()
Gets the domain to use for session cookies.java.lang.String
getSessionCookieName()
Gets the name to use for session cookies.java.lang.String
getSessionCookiePath()
Gets the path to use for session cookies.boolean
getSessionCookiePathUsesTrailingSlash()
Is a / added to the end of the session cookie path to ensure browsers, particularly IE, don't send a session cookie for context /foo with requests intended for context /foobar.int
getSessionTimeout()
boolean
getSkipMemoryLeakChecksOnJvmShutdown()
long
getStartTime()
Gets the time this context was started.long
getStartupTime()
Gets the time (in milliseconds) it took to start this context.boolean
getSwallowAbortedUploads()
Returnstrue
if remaining request data will be read (swallowed) even the request violates a data size constraint.boolean
getSwallowOutput()
ThreadBindingListener
getThreadBindingListener()
long
getTldScanTime()
boolean
getTldValidation()
Will the parsing of *.tld files for this Context be performed by a validating parser?long
getUnloadDelay()
boolean
getUnpackWAR()
boolean
getUseBloomFilterForArchives()
boolean
getUseHttpOnly()
Gets the value of the use HttpOnly cookies for session cookies flag.boolean
getUseRelativeRedirects()
Will HTTP 1.1 and later location headers generated by a call toHttpServletResponse.sendRedirect(String)
use relative or absolute redirects.boolean
getValidateClientProvidedNewSessionId()
Will client provided session IDs be validated (seeContext.setValidateClientProvidedNewSessionId(boolean)
) before use?java.lang.String
getWebappVersion()
java.lang.String[]
getWelcomeFiles()
java.lang.String
getWorkDir()
java.lang.String
getWorkPath()
Get the absolute path to the work dir.java.lang.String
getWrapperClass()
boolean
getXmlBlockExternal()
Will the parsing of web.xml, web-fragment.xml, *.tld, *.jspx, *.tagx and tagplugin.xml files for this Context block the use of external entities?boolean
getXmlNamespaceAware()
Will the parsing of web.xml and web-fragment.xml files for this Context be performed by a namespace aware parser?boolean
getXmlValidation()
Will the parsing of web.xml and web-fragment.xml files for this Context be performed by a validating parser?void
incrementInProgressAsyncCount()
protected void
initInternal()
Sub-classes wishing to perform additional initialization should override this method, ensuring that super.initInternal() is the first call in the overriding method.boolean
isResourceOnlyServlet(java.lang.String servletName)
Checks the named Servlet to see if it expects a resource to be present.boolean
isServlet22()
Are we processing a version 2.2 deployment descriptor?boolean
isUseNaming()
boolean
listenerStart()
Configure the set of instantiated application event listeners for this Context.boolean
listenerStop()
Send an application stop event to all interested listeners.boolean
loadOnStartup(Container[] children)
Load and initialize all servlets marked "load on startup" in the web application deployment descriptor.protected void
postWorkDirectory()
Set the appropriate context attribute for our work directory.void
reload()
Reload this web application, if reloading is supported.void
removeApplicationListener(java.lang.String listener)
Remove the specified application listener class from the set of listeners for this application.void
removeApplicationParameter(java.lang.String name)
Remove the application parameter with the specified name from the set for this application.void
removeChild(Container child)
Add a child Container, only if the proposed child is an implementation of Wrapper.void
removeConstraint(SecurityConstraint constraint)
Remove the specified security constraint from this web application.void
removeErrorPage(ErrorPage errorPage)
Remove the error page for the specified error code or Java language exception, if it exists; otherwise, no action is taken.void
removeFilterDef(FilterDef filterDef)
Remove the specified filter definition from this Context, if it exists; otherwise, no action is taken.void
removeFilterMap(FilterMap filterMap)
Remove a filter mapping from this Context.void
removeMessageDestination(java.lang.String name)
Remove any message destination with the specified name.void
removeMimeMapping(java.lang.String extension)
Remove the MIME mapping for the specified extension, if it exists; otherwise, no action is taken.void
removeNotificationListener(javax.management.NotificationListener listener)
Remove a JMX-NotificationListenervoid
removeNotificationListener(javax.management.NotificationListener listener, javax.management.NotificationFilter filter, java.lang.Object object)
Remove a JMX notificationListenervoid
removeParameter(java.lang.String name)
Remove the context initialization parameter with the specified name, if it exists; otherwise, no action is taken.void
removePostConstructMethod(java.lang.String clazz)
Removes the post construct method definition for the given class, if it exists; otherwise, no action is taken.void
removePreDestroyMethod(java.lang.String clazz)
Removes the pre destroy method definition for the given class, if it exists; otherwise, no action is taken.void
removeRoleMapping(java.lang.String role)
Remove any security role reference for the specified namevoid
removeSecurityRole(java.lang.String role)
Remove any security role with the specified name.void
removeServletMapping(java.lang.String pattern)
Remove any servlet mapping for the specified pattern, if it exists; otherwise, no action is taken.void
removeWatchedResource(java.lang.String name)
Remove the specified watched resource name from the list associated with this Context.void
removeWelcomeFile(java.lang.String name)
Remove the specified welcome file name from the list recognized by this Context.void
removeWrapperLifecycle(java.lang.String listener)
Remove a class name from the set of LifecycleListener classes that will be added to newly created Wrappers.void
removeWrapperListener(java.lang.String listener)
Remove a class name from the set of ContainerListener classes that will be added to newly created Wrappers.void
resourcesStart()
Allocate resources, including proxy.boolean
resourcesStop()
Deallocate resources and destroy proxy.void
setAddWebinfClassesResources(boolean addWebinfClassesResources)
Sets the flag that indicates if /WEB-INF/classes should be treated like an exploded JAR and JAR resources made available as if they were in a JAR.void
setAllowCasualMultipartParsing(boolean allowCasualMultipartParsing)
Set totrue
to allow requests mapped to servlets that do not explicitly declare @MultipartConfig or have <multipart-config> specified in web.xml to parse multipart/form-data requests.void
setAllowMultipleLeadingForwardSlashInPath(boolean allowMultipleLeadingForwardSlashInPath)
Configure if, when returning a context path fromHttpServletRequest.getContextPath()
, the return value is allowed to contain multiple leading '/' characters.void
setAltDDName(java.lang.String altDDName)
Set an alternate Deployment Descriptor name.void
setAlwaysAccessSession(boolean alwaysAccessSession)
Set the session access behavior.void
setAntiResourceLocking(boolean antiResourceLocking)
Set the antiResourceLocking feature for this Context.void
setApplicationEventListeners(java.lang.Object[] listeners)
Store the set of initialized application event listener objects, in the order they were specified in the web application deployment descriptor, for this application.void
setApplicationLifecycleListeners(java.lang.Object[] listeners)
Store the set of initialized application lifecycle listener objects, in the order they were specified in the web application deployment descriptor, for this application.void
setCharsetMapper(CharsetMapper mapper)
Set the Locale to character set mapper for this Context.void
setCharsetMapperClass(java.lang.String mapper)
Set the Locale to character set mapper class for this Context.void
setClearReferencesHttpClientKeepAliveThread(boolean clearReferencesHttpClientKeepAliveThread)
Set the clearReferencesHttpClientKeepAliveThread feature for this Context.void
setClearReferencesObjectStreamClassCaches(boolean clearReferencesObjectStreamClassCaches)
void
setClearReferencesRmiTargets(boolean clearReferencesRmiTargets)
void
setClearReferencesStopThreads(boolean clearReferencesStopThreads)
Set the clearReferencesStopThreads feature for this Context.void
setClearReferencesStopTimerThreads(boolean clearReferencesStopTimerThreads)
Set the clearReferencesStopTimerThreads feature for this Context.void
setClearReferencesThreadLocals(boolean clearReferencesThreadLocals)
void
setConfigFile(java.net.URL configFile)
Set the URL of the XML descriptor for this context.void
setConfigured(boolean configured)
Set the "correctly configured" flag for this Context.void
setContainerSciFilter(java.lang.String containerSciFilter)
Sets the regular expression that specifies which container provided SCIs should be filtered out and not used for this context.void
setContextGetResourceRequiresSlash(boolean contextGetResourceRequiresSlash)
Allow usingServletContext.getResource()
orServletContext.getResourceAsStream()
without a leading "/".void
setCookieProcessor(CookieProcessor cookieProcessor)
Sets theCookieProcessor
that will be used to process cookies for this Context.void
setCookies(boolean cookies)
Set the "use cookies for session ids" flag.void
setCopyXML(boolean copyXML)
Allows copying a bundled context.xml file to the host configuration base folder on deployment.void
setCreateUploadTargets(boolean createUploadTargets)
Configure whether Tomcat will attempt to create an upload target used by this web application if it does not exist when the web application attempts to use it.void
setCrossContext(boolean crossContext)
Set the "allow crossing servlet contexts" flag.void
setDefaultContextXml(java.lang.String defaultContextXml)
Set the location of the default context xml that will be used.void
setDefaultWebXml(java.lang.String defaultWebXml)
Set the location of the default web xml that will be used.void
setDelegate(boolean delegate)
Set the "follow standard delegation model" flag used to configure our ClassLoader.void
setDenyUncoveredHttpMethods(boolean denyUncoveredHttpMethods)
Set the deny-uncovered-http-methods flag for this web application.void
setDispatchersUseEncodedPaths(boolean dispatchersUseEncodedPaths)
Are paths used in calls to obtain a request dispatcher expected to be encoded?void
setDispatcherWrapsSameObject(boolean dispatcherWrapsSameObject)
Allow disabling the object wrap check in the request dispatcher.void
setDisplayName(java.lang.String displayName)
Set the display name of this web application.void
setDistributable(boolean distributable)
Set the distributable flag for this web application.void
setDocBase(java.lang.String docBase)
Set the document root for this Context.void
setEffectiveMajorVersion(int effectiveMajorVersion)
Set the effective major version of the Servlet spec used by this context.void
setEffectiveMinorVersion(int effectiveMinorVersion)
Set the effective minor version of the Servlet spec used by this context.void
setFailCtxIfServletStartFails(java.lang.Boolean failCtxIfServletStartFails)
void
setFireRequestListenersOnForwards(boolean enable)
Configure whether or not requests listeners will be fired on forwards for this Context.void
setIgnoreAnnotations(boolean ignoreAnnotations)
Set the boolean on the annotations parsing for this web application.void
setInstanceManager(InstanceManager instanceManager)
Set the instance manager associated with this context.void
setJ2EEApplication(java.lang.String j2EEApplication)
void
setJ2EEServer(java.lang.String j2EEServer)
void
setJarScanner(JarScanner jarScanner)
Set the Jar Scanner to be used to scan for JAR resources for this context.java.lang.String[]
setJavaVMs(java.lang.String[] javaVMs)
Deprecated.Unused.void
setJndiExceptionOnFailedWrite(boolean jndiExceptionOnFailedWrite)
Controls whether or not an attempt to modify the JNDI context will trigger an exception or if the request will be ignored.void
setJspConfigDescriptor(JspConfigDescriptor descriptor)
Set the JspConfigDescriptor for this context.void
setLoader(Loader loader)
Set the Loader with which this Context is associated.void
setLogEffectiveWebXml(boolean logEffectiveWebXml)
Set whether or not the effective web.xml for this context should be logged on context start.void
setLoginConfig(LoginConfig config)
Set the login configuration descriptor for this web application.void
setManager(Manager manager)
Set the Manager with which this Context is associated.void
setMapperContextRootRedirectEnabled(boolean mapperContextRootRedirectEnabled)
If enabled, requests for a web application context root will be redirected (adding a trailing slash) by the Mapper.void
setMapperDirectoryRedirectEnabled(boolean mapperDirectoryRedirectEnabled)
If enabled, requests for a directory will be redirected (adding a trailing slash) by the Mapper.void
setNamingContextListener(NamingContextListener namingContextListener)
Naming context listener setter.void
setNamingResources(NamingResourcesImpl namingResources)
Set the naming resources for this web application.void
setOriginalDocBase(java.lang.String docBase)
Set the original document root for this Context.void
setOverride(boolean override)
Set the default context override flag for this web application.void
setParallelAnnotationScanning(boolean parallelAnnotationScanning)
Set the parallel annotation scanning value.void
setPath(java.lang.String path)
Set the context path for this Context.void
setPreemptiveAuthentication(boolean preemptiveAuthentication)
Configures if a user presents authentication credentials, whether the context will process them when the request is for a non-protected resource.void
setPrivileged(boolean privileged)
Set the privileged flag for this web application.void
setPublicId(java.lang.String publicId)
Set the public identifier of the deployment descriptor DTD that is currently being parsed.void
setReloadable(boolean reloadable)
Set the reloadable flag for this web application.void
setRenewThreadsWhenStoppingContext(boolean renewThreadsWhenStoppingContext)
void
setReplaceWelcomeFiles(boolean replaceWelcomeFiles)
Set the "replace welcome files" property.void
setRequestCharacterEncoding(java.lang.String requestEncoding)
Set the default request body encoding for this web application.void
setResourceOnlyServlets(java.lang.String resourceOnlyServlets)
Sets the (comma separated) list of Servlets that expect a resource to be present.void
setResources(WebResourceRoot resources)
Set the Resources object with which this Context is associated.void
setResponseCharacterEncoding(java.lang.String responseEncoding)
Set the default response body encoding for this web application.void
setSendRedirectBody(boolean sendRedirectBody)
Configures if a response body is included when a redirect response is sent to the client.java.lang.String
setServer(java.lang.String server)
void
setSessionCookieDomain(java.lang.String sessionCookieDomain)
Sets the domain to use for session cookies.void
setSessionCookieName(java.lang.String sessionCookieName)
Sets the name to use for session cookies.void
setSessionCookiePath(java.lang.String sessionCookiePath)
Sets the path to use for session cookies.void
setSessionCookiePathUsesTrailingSlash(boolean sessionCookiePathUsesTrailingSlash)
Configures if a / is added to the end of the session cookie path to ensure browsers, particularly IE, don't send a session cookie for context /foo with requests intended for context /foobar.void
setSessionTimeout(int timeout)
Set the default session timeout (in minutes) for this web application.void
setSkipMemoryLeakChecksOnJvmShutdown(boolean skipMemoryLeakChecksOnJvmShutdown)
void
setStartupTime(long startupTime)
void
setSwallowAbortedUploads(boolean swallowAbortedUploads)
Set tofalse
to disable request data swallowing after an upload was aborted due to size constraints.void
setSwallowOutput(boolean swallowOutput)
Set the value of the swallowOutput flag.void
setThreadBindingListener(ThreadBindingListener threadBindingListener)
Get the associated ThreadBindingListener.void
setTldScanTime(long tldScanTime)
void
setTldValidation(boolean tldValidation)
Controls whether the parsing of *.tld files for this Context will be performed by a validating parser.void
setUnloadDelay(long unloadDelay)
Set the value of the unloadDelay flag, which represents the amount of ms that the container will wait when unloading servlets.void
setUnpackWAR(boolean unpackWAR)
Unpack WAR flag mutator.void
setUseBloomFilterForArchives(boolean useBloomFilterForArchives)
Set bloom filter flag value.void
setUseHttpOnly(boolean useHttpOnly)
Sets the use HttpOnly cookies for session cookies flag.void
setUseNaming(boolean useNaming)
Enables or disables naming.void
setUseRelativeRedirects(boolean useRelativeRedirects)
Controls whether HTTP 1.1 and later location headers generated by a call toHttpServletResponse.sendRedirect(String)
will use relative or absolute redirects.void
setValidateClientProvidedNewSessionId(boolean validateClientProvidedNewSessionId)
When a client provides the ID for a new session, should that ID be validated?void
setWebappVersion(java.lang.String webappVersion)
Set the version of this web application - used to differentiate different versions of the same web application when using parallel deployment.void
setWorkDir(java.lang.String workDir)
Set the work directory for this Context.void
setWrapperClass(java.lang.String wrapperClassName)
Set the Java class name of the Wrapper implementation used for servlets registered in this Context.void
setXmlBlockExternal(boolean xmlBlockExternal)
Controls whether the parsing of web.xml, web-fragment.xml, *.tld, *.jspx, *.tagx and tagplugin.xml files for this Context will block the use of external entities.void
setXmlNamespaceAware(boolean webXmlNamespaceAware)
Controls whether the parsing of web.xml and web-fragment.xml files for this Context will be performed by a namespace aware parser.void
setXmlValidation(boolean webXmlValidation)
Controls whether the parsing of web.xml and web-fragment.xml files for this Context will be performed by a validating parser.protected void
startInternal()
Start this component and implement the requirements ofLifecycleBase.startInternal()
.protected void
stopInternal()
Stop this component and implement the requirements ofLifecycleBase.stopInternal()
.void
unbind(boolean usePrivilegedAction, java.lang.ClassLoader originalClassLoader)
Restore the current thread context class loader to the original class loader in used beforeContextBind.bind(boolean, ClassLoader)
was called.protected void
unbindThread(java.lang.ClassLoader oldContextClassLoader)
Unbind thread and restore the specified context classloader.boolean
wasCreatedDynamicServlet(Servlet servlet)
-
Methods inherited from class org.apache.catalina.core.ContainerBase
addContainerListener, addPropertyChangeListener, addValve, findChild, findChildren, findContainerListeners, fireContainerEvent, getAccessLog, getBackgroundProcessorDelay, getCatalinaBase, getCatalinaHome, getChildren, getCluster, getClusterInternal, getDomainInternal, getLogger, getLogName, getMBeanKeyProperties, getName, getParent, getPipeline, getRealm, getRealmInternal, getStartChildren, getStartStopThreads, logAccess, removeContainerListener, removePropertyChangeListener, setBackgroundProcessorDelay, setCluster, setName, setParent, setParentClassLoader, setRealm, setStartChildren, setStartStopThreads, threadStart, threadStop, toString
-
Methods inherited from class org.apache.catalina.util.LifecycleMBeanBase
getDomain, getObjectName, postDeregister, postRegister, preDeregister, preRegister, register, setDomain, unregister, unregister
-
Methods inherited from class org.apache.catalina.util.LifecycleBase
addLifecycleListener, destroy, findLifecycleListeners, fireLifecycleEvent, getState, getStateName, getThrowOnFailure, init, removeLifecycleListener, setState, setState, setThrowOnFailure, start, stop
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.catalina.Container
addContainerListener, addPropertyChangeListener, findChild, findChildren, findContainerListeners, fireContainerEvent, getAccessLog, getBackgroundProcessorDelay, getCatalinaBase, getCatalinaHome, getCluster, getDomain, getLogger, getLogName, getMBeanKeyProperties, getName, getObjectName, getParent, getPipeline, getRealm, getStartStopThreads, logAccess, removeContainerListener, removePropertyChangeListener, setBackgroundProcessorDelay, setCluster, setName, setParent, setParentClassLoader, setRealm, setStartStopThreads
-
Methods inherited from interface org.apache.catalina.Context
addServletMappingDecoded, isParallelAnnotationScanning
-
Methods inherited from interface org.apache.catalina.Lifecycle
addLifecycleListener, destroy, findLifecycleListeners, getState, getStateName, init, removeLifecycleListener, start, stop
-
-
-
-
Field Detail
-
allowCasualMultipartParsing
protected boolean allowCasualMultipartParsing
Allow multipart/form-data requests to be parsed even when the target servlet doesn't specify @MultipartConfig or have a <multipart-config> element.
-
context
protected ApplicationContext context
The ServletContext implementation associated with this Context.
-
manager
protected Manager manager
The Manager implementation with which this Container is associated.
-
DEFAULT_NAMING_LISTENER
protected static final ThreadBindingListener DEFAULT_NAMING_LISTENER
-
threadBindingListener
protected ThreadBindingListener threadBindingListener
-
-
Method Detail
-
setCreateUploadTargets
public void setCreateUploadTargets(boolean createUploadTargets)
Description copied from interface:Context
Configure whether Tomcat will attempt to create an upload target used by this web application if it does not exist when the web application attempts to use it.- Specified by:
setCreateUploadTargets
in interfaceContext
- Parameters:
createUploadTargets
-true
if Tomcat should attempt to create the upload target, otherwisefalse
-
getCreateUploadTargets
public boolean getCreateUploadTargets()
Description copied from interface:Context
Will Tomcat attempt to create an upload target used by this web application if it does not exist when the web application attempts to use it?- Specified by:
getCreateUploadTargets
in interfaceContext
- Returns:
true
if Tomcat will attempt to create an upload target otherwisefalse
-
incrementInProgressAsyncCount
public void incrementInProgressAsyncCount()
- Specified by:
incrementInProgressAsyncCount
in interfaceContext
-
decrementInProgressAsyncCount
public void decrementInProgressAsyncCount()
- Specified by:
decrementInProgressAsyncCount
in interfaceContext
-
getInProgressAsyncCount
public long getInProgressAsyncCount()
-
setAllowMultipleLeadingForwardSlashInPath
public void setAllowMultipleLeadingForwardSlashInPath(boolean allowMultipleLeadingForwardSlashInPath)
Description copied from interface:Context
Configure if, when returning a context path fromHttpServletRequest.getContextPath()
, the return value is allowed to contain multiple leading '/' characters.- Specified by:
setAllowMultipleLeadingForwardSlashInPath
in interfaceContext
- Parameters:
allowMultipleLeadingForwardSlashInPath
- The new value for the flag
-
getAllowMultipleLeadingForwardSlashInPath
public boolean getAllowMultipleLeadingForwardSlashInPath()
Description copied from interface:Context
When returning a context path fromHttpServletRequest.getContextPath()
, is it allowed to contain multiple leading '/' characters?- Specified by:
getAllowMultipleLeadingForwardSlashInPath
in interfaceContext
- Returns:
true
if multiple leading '/' characters are allowed, otherwisefalse
-
getAlwaysAccessSession
public boolean getAlwaysAccessSession()
Description copied from interface:Context
If this istrue
, every request that is associated with a session will cause the session's last accessed time to be updated regardless of whether or not the request explicitly accesses the session. Iforg.apache.catalina.STRICT_SERVLET_COMPLIANCE
is set totrue
, the default of this setting will betrue
, else the default value will befalse
.- Specified by:
getAlwaysAccessSession
in interfaceContext
- Returns:
- the flag value
-
setAlwaysAccessSession
public void setAlwaysAccessSession(boolean alwaysAccessSession)
Description copied from interface:Context
Set the session access behavior.- Specified by:
setAlwaysAccessSession
in interfaceContext
- Parameters:
alwaysAccessSession
- the new flag value
-
getContextGetResourceRequiresSlash
public boolean getContextGetResourceRequiresSlash()
Description copied from interface:Context
If this istrue
then the path passed toServletContext.getResource()
orServletContext.getResourceAsStream()
must start with "/". Iffalse
, code likegetResource("myfolder/myresource.txt")
will work as Tomcat will prepend "/" to the provided path. Iforg.apache.catalina.STRICT_SERVLET_COMPLIANCE
is set totrue
, the default of this setting will betrue
, else the default value will befalse
.- Specified by:
getContextGetResourceRequiresSlash
in interfaceContext
- Returns:
- the flag value
-
setContextGetResourceRequiresSlash
public void setContextGetResourceRequiresSlash(boolean contextGetResourceRequiresSlash)
Description copied from interface:Context
Allow usingServletContext.getResource()
orServletContext.getResourceAsStream()
without a leading "/".- Specified by:
setContextGetResourceRequiresSlash
in interfaceContext
- Parameters:
contextGetResourceRequiresSlash
- the new flag value
-
getDispatcherWrapsSameObject
public boolean getDispatcherWrapsSameObject()
Description copied from interface:Context
If this istrue
then any wrapped request or response object passed to an application dispatcher will be checked to ensure that it has wrapped the original request or response. Iforg.apache.catalina.STRICT_SERVLET_COMPLIANCE
is set totrue
, the default of this setting will betrue
, else the default value will befalse
.- Specified by:
getDispatcherWrapsSameObject
in interfaceContext
- Returns:
- the flag value
-
setDispatcherWrapsSameObject
public void setDispatcherWrapsSameObject(boolean dispatcherWrapsSameObject)
Description copied from interface:Context
Allow disabling the object wrap check in the request dispatcher.- Specified by:
setDispatcherWrapsSameObject
in interfaceContext
- Parameters:
dispatcherWrapsSameObject
- the new flag value
-
getRequestCharacterEncoding
public java.lang.String getRequestCharacterEncoding()
Description copied from interface:Context
Get the default request body encoding for this web application.- Specified by:
getRequestCharacterEncoding
in interfaceContext
- Returns:
- The default request body encoding
-
setRequestCharacterEncoding
public void setRequestCharacterEncoding(java.lang.String requestEncoding)
Description copied from interface:Context
Set the default request body encoding for this web application.- Specified by:
setRequestCharacterEncoding
in interfaceContext
- Parameters:
requestEncoding
- The default encoding
-
getResponseCharacterEncoding
public java.lang.String getResponseCharacterEncoding()
Description copied from interface:Context
Get the default response body encoding for this web application.- Specified by:
getResponseCharacterEncoding
in interfaceContext
- Returns:
- The default response body encoding
-
setResponseCharacterEncoding
public void setResponseCharacterEncoding(java.lang.String responseEncoding)
Description copied from interface:Context
Set the default response body encoding for this web application.- Specified by:
setResponseCharacterEncoding
in interfaceContext
- Parameters:
responseEncoding
- The default encoding
-
setDispatchersUseEncodedPaths
public void setDispatchersUseEncodedPaths(boolean dispatchersUseEncodedPaths)
Description copied from interface:Context
Are paths used in calls to obtain a request dispatcher expected to be encoded? This affects both how Tomcat handles calls to obtain a request dispatcher as well as how Tomcat generates paths used to obtain request dispatchers internally.- Specified by:
setDispatchersUseEncodedPaths
in interfaceContext
- Parameters:
dispatchersUseEncodedPaths
-true
to use encoded paths, otherwisefalse
-
getDispatchersUseEncodedPaths
public boolean getDispatchersUseEncodedPaths()
Are paths used in calls to obtain a request dispatcher expected to be encoded? This applies to both how Tomcat handles calls to obtain a request dispatcher as well as how Tomcat generates paths used to obtain request dispatchers internally.The default value for this implementation is
true
.- Specified by:
getDispatchersUseEncodedPaths
in interfaceContext
- Returns:
true
if encoded paths will be used, otherwisefalse
-
setUseRelativeRedirects
public void setUseRelativeRedirects(boolean useRelativeRedirects)
Description copied from interface:Context
Controls whether HTTP 1.1 and later location headers generated by a call toHttpServletResponse.sendRedirect(String)
will use relative or absolute redirects.Relative redirects are more efficient but may not work with reverse proxies that change the context path. It should be noted that it is not recommended to use a reverse proxy to change the context path because of the multiple issues it creates.
Absolute redirects should work with reverse proxies that change the context path but may cause issues with the
RemoteIpFilter
if the filter is changing the scheme and/or port.- Specified by:
setUseRelativeRedirects
in interfaceContext
- Parameters:
useRelativeRedirects
-true
to use relative redirects andfalse
to use absolute redirects
-
getUseRelativeRedirects
public boolean getUseRelativeRedirects()
Will HTTP 1.1 and later location headers generated by a call toHttpServletResponse.sendRedirect(String)
use relative or absolute redirects.The default value for this implementation is
true
.- Specified by:
getUseRelativeRedirects
in interfaceContext
- Returns:
true
if relative redirects will be usedfalse
if absolute redirects are used.- See Also:
Context.setUseRelativeRedirects(boolean)
-
setMapperContextRootRedirectEnabled
public void setMapperContextRootRedirectEnabled(boolean mapperContextRootRedirectEnabled)
Description copied from interface:Context
If enabled, requests for a web application context root will be redirected (adding a trailing slash) by the Mapper. This is more efficient but has the side effect of confirming that the context path is valid.- Specified by:
setMapperContextRootRedirectEnabled
in interfaceContext
- Parameters:
mapperContextRootRedirectEnabled
- Should the redirects be enabled?
-
getMapperContextRootRedirectEnabled
public boolean getMapperContextRootRedirectEnabled()
Determines if requests for a web application context root will be redirected (adding a trailing slash) by the Mapper. This is more efficient but has the side effect of confirming that the context path is valid.The default value for this implementation is
false
.- Specified by:
getMapperContextRootRedirectEnabled
in interfaceContext
- Returns:
true
if the Mapper level redirect is enabled for this Context.
-
setMapperDirectoryRedirectEnabled
public void setMapperDirectoryRedirectEnabled(boolean mapperDirectoryRedirectEnabled)
Description copied from interface:Context
If enabled, requests for a directory will be redirected (adding a trailing slash) by the Mapper. This is more efficient but has the side effect of confirming that the directory is valid.- Specified by:
setMapperDirectoryRedirectEnabled
in interfaceContext
- Parameters:
mapperDirectoryRedirectEnabled
- Should the redirects be enabled?
-
getMapperDirectoryRedirectEnabled
public boolean getMapperDirectoryRedirectEnabled()
Determines if requests for a directory will be redirected (adding a trailing slash) by the Mapper. This is more efficient but has the side effect of confirming that the directory is valid.The default value for this implementation is
false
.- Specified by:
getMapperDirectoryRedirectEnabled
in interfaceContext
- Returns:
true
if the Mapper level redirect is enabled for this Context.
-
setValidateClientProvidedNewSessionId
public void setValidateClientProvidedNewSessionId(boolean validateClientProvidedNewSessionId)
Description copied from interface:Context
When a client provides the ID for a new session, should that ID be validated? The only use case for using a client provided session ID is to have a common session ID across multiple web applications. Therefore, any client provided session ID should already exist in another web application. If this check is enabled, the client provided session ID will only be used if the session ID exists in at least one other web application for the current host. Note that the following additional tests are always applied, irrespective of this setting:- The session ID is provided by a cookie
- The session cookie has a path of
/
- Specified by:
setValidateClientProvidedNewSessionId
in interfaceContext
- Parameters:
validateClientProvidedNewSessionId
-true
if validation should be applied
-
getValidateClientProvidedNewSessionId
public boolean getValidateClientProvidedNewSessionId()
Will client provided session IDs be validated (seeContext.setValidateClientProvidedNewSessionId(boolean)
) before use?The default value for this implementation is
true
.- Specified by:
getValidateClientProvidedNewSessionId
in interfaceContext
- Returns:
true
if validation will be applied. Otherwise,false
-
setCookieProcessor
public void setCookieProcessor(CookieProcessor cookieProcessor)
Description copied from interface:Context
Sets theCookieProcessor
that will be used to process cookies for this Context.- Specified by:
setCookieProcessor
in interfaceContext
- Parameters:
cookieProcessor
- The new cookie processor
-
getCookieProcessor
public CookieProcessor getCookieProcessor()
- Specified by:
getCookieProcessor
in interfaceContext
- Returns:
- the
CookieProcessor
that will be used to process cookies for this Context.
-
getNamingToken
public java.lang.Object getNamingToken()
- Specified by:
getNamingToken
in interfaceContext
- Returns:
- the token necessary for operations on the associated JNDI naming context.
-
setContainerSciFilter
public void setContainerSciFilter(java.lang.String containerSciFilter)
Description copied from interface:Context
Sets the regular expression that specifies which container provided SCIs should be filtered out and not used for this context. Matching usesMatcher.find()
so the regular expression only has to match a sub-string of the fully qualified class name of the container provided SCI for it to be filtered out.- Specified by:
setContainerSciFilter
in interfaceContext
- Parameters:
containerSciFilter
- The regular expression against which the fully qualified class name of each container provided SCI should be checked
-
getContainerSciFilter
public java.lang.String getContainerSciFilter()
Description copied from interface:Context
Obtains the regular expression that specifies which container provided SCIs should be filtered out and not used for this context. Matching usesMatcher.find()
so the regular expression only has to match a sub-string of the fully qualified class name of the container provided SCI for it to be filtered out.- Specified by:
getContainerSciFilter
in interfaceContext
- Returns:
- The regular expression against which the fully qualified class name of each container provided SCI will be checked
-
getSendRedirectBody
public boolean getSendRedirectBody()
- Specified by:
getSendRedirectBody
in interfaceContext
- Returns:
- if the context is configured to include a response body as part of a redirect response.
-
setSendRedirectBody
public void setSendRedirectBody(boolean sendRedirectBody)
Description copied from interface:Context
Configures if a response body is included when a redirect response is sent to the client.- Specified by:
setSendRedirectBody
in interfaceContext
- Parameters:
sendRedirectBody
-true
to send a response body for redirects
-
getPreemptiveAuthentication
public boolean getPreemptiveAuthentication()
- Specified by:
getPreemptiveAuthentication
in interfaceContext
- Returns:
- if a user presents authentication credentials, will the context will process them when the request is for a non-protected resource.
-
setPreemptiveAuthentication
public void setPreemptiveAuthentication(boolean preemptiveAuthentication)
Description copied from interface:Context
Configures if a user presents authentication credentials, whether the context will process them when the request is for a non-protected resource.- Specified by:
setPreemptiveAuthentication
in interfaceContext
- Parameters:
preemptiveAuthentication
-true
to perform authentication even outside security constraints
-
setFireRequestListenersOnForwards
public void setFireRequestListenersOnForwards(boolean enable)
Description copied from interface:Context
Configure whether or not requests listeners will be fired on forwards for this Context.- Specified by:
setFireRequestListenersOnForwards
in interfaceContext
- Parameters:
enable
-true
to fire request listeners when forwarding
-
getFireRequestListenersOnForwards
public boolean getFireRequestListenersOnForwards()
- Specified by:
getFireRequestListenersOnForwards
in interfaceContext
- Returns:
- whether or not requests listeners will be fired on forwards for this Context.
-
setAddWebinfClassesResources
public void setAddWebinfClassesResources(boolean addWebinfClassesResources)
Description copied from interface:Context
Sets the flag that indicates if /WEB-INF/classes should be treated like an exploded JAR and JAR resources made available as if they were in a JAR.- Specified by:
setAddWebinfClassesResources
in interfaceContext
- Parameters:
addWebinfClassesResources
- The new value for the flag
-
getAddWebinfClassesResources
public boolean getAddWebinfClassesResources()
- Specified by:
getAddWebinfClassesResources
in interfaceContext
- Returns:
- the flag that indicates if /WEB-INF/classes should be treated like an exploded JAR and JAR resources made available as if they were in a JAR.
-
setWebappVersion
public void setWebappVersion(java.lang.String webappVersion)
Description copied from interface:Context
Set the version of this web application - used to differentiate different versions of the same web application when using parallel deployment.- Specified by:
setWebappVersion
in interfaceContext
- Parameters:
webappVersion
- The webapp version associated with the context, which should be unique
-
getWebappVersion
public java.lang.String getWebappVersion()
- Specified by:
getWebappVersion
in interfaceContext
- Returns:
- The version of this web application, used to differentiate different versions of the same web application when using parallel deployment. If not specified, defaults to the empty string.
-
getBaseName
public java.lang.String getBaseName()
- Specified by:
getBaseName
in interfaceContext
- Returns:
- the base name to use for WARs, directories or context.xml files for this context.
-
getResourceOnlyServlets
public java.lang.String getResourceOnlyServlets()
Description copied from interface:Context
Obtains the list of Servlets that expect a resource to be present.- Specified by:
getResourceOnlyServlets
in interfaceContext
- Returns:
- A comma separated list of Servlet names as used in web.xml
-
setResourceOnlyServlets
public void setResourceOnlyServlets(java.lang.String resourceOnlyServlets)
Description copied from interface:Context
Sets the (comma separated) list of Servlets that expect a resource to be present. Used to ensure that welcome files associated with Servlets that expect a resource to be present are not mapped when there is no resource.- Specified by:
setResourceOnlyServlets
in interfaceContext
- Parameters:
resourceOnlyServlets
- The Servlet names comma separated list
-
isResourceOnlyServlet
public boolean isResourceOnlyServlet(java.lang.String servletName)
Description copied from interface:Context
Checks the named Servlet to see if it expects a resource to be present.- Specified by:
isResourceOnlyServlet
in interfaceContext
- Parameters:
servletName
- Name of the Servlet (as per web.xml) to check- Returns:
true
if the Servlet expects a resource, otherwisefalse
-
getEffectiveMajorVersion
public int getEffectiveMajorVersion()
- Specified by:
getEffectiveMajorVersion
in interfaceContext
- Returns:
- the effective major version of the Servlet spec used by this context.
-
setEffectiveMajorVersion
public void setEffectiveMajorVersion(int effectiveMajorVersion)
Description copied from interface:Context
Set the effective major version of the Servlet spec used by this context.- Specified by:
setEffectiveMajorVersion
in interfaceContext
- Parameters:
effectiveMajorVersion
- Set the version number
-
getEffectiveMinorVersion
public int getEffectiveMinorVersion()
- Specified by:
getEffectiveMinorVersion
in interfaceContext
- Returns:
- the effective minor version of the Servlet spec used by this context.
-
setEffectiveMinorVersion
public void setEffectiveMinorVersion(int effectiveMinorVersion)
Description copied from interface:Context
Set the effective minor version of the Servlet spec used by this context.- Specified by:
setEffectiveMinorVersion
in interfaceContext
- Parameters:
effectiveMinorVersion
- Set the version number
-
setLogEffectiveWebXml
public void setLogEffectiveWebXml(boolean logEffectiveWebXml)
Description copied from interface:Context
Set whether or not the effective web.xml for this context should be logged on context start.- Specified by:
setLogEffectiveWebXml
in interfaceContext
- Parameters:
logEffectiveWebXml
- set totrue
to log the complete web.xml that will be used for the webapp
-
getLogEffectiveWebXml
public boolean getLogEffectiveWebXml()
Description copied from interface:Context
Should the effective web.xml for this context be logged on context start?- Specified by:
getLogEffectiveWebXml
in interfaceContext
- Returns:
- true if the reconstructed web.xml that will be used for the webapp should be logged
-
getAuthenticator
public Authenticator getAuthenticator()
- Specified by:
getAuthenticator
in interfaceContext
- Returns:
- the
Authenticator
that is used by this context. This is always non-null
for a started Context
-
getJarScanner
public JarScanner getJarScanner()
Description copied from interface:Context
Get the Jar Scanner to be used to scan for JAR resources for this context.- Specified by:
getJarScanner
in interfaceContext
- Returns:
- The Jar Scanner configured for this context.
-
setJarScanner
public void setJarScanner(JarScanner jarScanner)
Description copied from interface:Context
Set the Jar Scanner to be used to scan for JAR resources for this context.- Specified by:
setJarScanner
in interfaceContext
- Parameters:
jarScanner
- The Jar Scanner to be used for this context.
-
getInstanceManager
public InstanceManager getInstanceManager()
- Specified by:
getInstanceManager
in interfaceContext
- Returns:
- the instance manager associated with this context.
-
setInstanceManager
public void setInstanceManager(InstanceManager instanceManager)
Description copied from interface:Context
Set the instance manager associated with this context.- Specified by:
setInstanceManager
in interfaceContext
- Parameters:
instanceManager
- the new instance manager instance
-
getEncodedPath
public java.lang.String getEncodedPath()
Description copied from interface:Context
Return the URL encoded context path- Specified by:
getEncodedPath
in interfaceContext
- Returns:
- The URL encoded (with UTF-8) context path
-
setAllowCasualMultipartParsing
public void setAllowCasualMultipartParsing(boolean allowCasualMultipartParsing)
Set totrue
to allow requests mapped to servlets that do not explicitly declare @MultipartConfig or have <multipart-config> specified in web.xml to parse multipart/form-data requests.- Specified by:
setAllowCasualMultipartParsing
in interfaceContext
- Parameters:
allowCasualMultipartParsing
-true
to allow such casual parsing,false
otherwise.
-
getAllowCasualMultipartParsing
public boolean getAllowCasualMultipartParsing()
Returnstrue
if requests mapped to servlets without "multipart config" to parse multipart/form-data requests anyway.- Specified by:
getAllowCasualMultipartParsing
in interfaceContext
- Returns:
true
if requests mapped to servlets without "multipart config" to parse multipart/form-data requests,false
otherwise.
-
setSwallowAbortedUploads
public void setSwallowAbortedUploads(boolean swallowAbortedUploads)
Set tofalse
to disable request data swallowing after an upload was aborted due to size constraints.- Specified by:
setSwallowAbortedUploads
in interfaceContext
- Parameters:
swallowAbortedUploads
-false
to disable swallowing,true
otherwise (default).
-
getSwallowAbortedUploads
public boolean getSwallowAbortedUploads()
Returnstrue
if remaining request data will be read (swallowed) even the request violates a data size constraint.- Specified by:
getSwallowAbortedUploads
in interfaceContext
- Returns:
true
if data will be swallowed (default),false
otherwise.
-
addServletContainerInitializer
public void addServletContainerInitializer(ServletContainerInitializer sci, java.util.Set<java.lang.Class<?>> classes)
Add a ServletContainerInitializer instance to this web application.- Specified by:
addServletContainerInitializer
in interfaceContext
- Parameters:
sci
- The instance to addclasses
- The classes in which the initializer expressed an interest
-
getDelegate
public boolean getDelegate()
Return the "follow standard delegation model" flag used to configure our ClassLoader.- Returns:
true
if classloading delegates to the parent classloader first
-
setDelegate
public void setDelegate(boolean delegate)
Set the "follow standard delegation model" flag used to configure our ClassLoader.- Parameters:
delegate
- The new flag
-
isUseNaming
public boolean isUseNaming()
- Returns:
- true if the internal naming support is used.
-
setUseNaming
public void setUseNaming(boolean useNaming)
Enables or disables naming.- Parameters:
useNaming
-true
to enable the naming environment
-
getApplicationEventListeners
public java.lang.Object[] getApplicationEventListeners()
Description copied from interface:Context
Obtain the registered application event listeners.- Specified by:
getApplicationEventListeners
in interfaceContext
- Returns:
- An array containing the application event listener instances for this web application in the order they were specified in the web application deployment descriptor
-
setApplicationEventListeners
public void setApplicationEventListeners(java.lang.Object[] listeners)
Store the set of initialized application event listener objects, in the order they were specified in the web application deployment descriptor, for this application. Note that this implementation is not thread safe. If two threads call this method concurrently, the result may be either set of listeners or a the union of both.- Specified by:
setApplicationEventListeners
in interfaceContext
- Parameters:
listeners
- The set of instantiated listener objects.
-
addApplicationEventListener
public void addApplicationEventListener(java.lang.Object listener)
Add a listener to the end of the list of initialized application event listeners.- Parameters:
listener
- The listener to add
-
getApplicationLifecycleListeners
public java.lang.Object[] getApplicationLifecycleListeners()
Description copied from interface:Context
Obtain the registered application lifecycle listeners.- Specified by:
getApplicationLifecycleListeners
in interfaceContext
- Returns:
- An array containing the application lifecycle listener instances for this web application in the order they were specified in the web application deployment descriptor
-
setApplicationLifecycleListeners
public void setApplicationLifecycleListeners(java.lang.Object[] listeners)
Store the set of initialized application lifecycle listener objects, in the order they were specified in the web application deployment descriptor, for this application.- Specified by:
setApplicationLifecycleListeners
in interfaceContext
- Parameters:
listeners
- The set of instantiated listener objects.
-
addApplicationLifecycleListener
public void addApplicationLifecycleListener(java.lang.Object listener)
Add a listener to the end of the list of initialized application lifecycle listeners.- Parameters:
listener
- The listener to add
-
getAntiResourceLocking
public boolean getAntiResourceLocking()
- Returns:
- the antiResourceLocking flag for this Context.
-
setAntiResourceLocking
public void setAntiResourceLocking(boolean antiResourceLocking)
Set the antiResourceLocking feature for this Context.- Parameters:
antiResourceLocking
- The new flag value
-
getUseBloomFilterForArchives
public boolean getUseBloomFilterForArchives()
- Specified by:
getUseBloomFilterForArchives
in interfaceContext
- Returns:
true
if the resources archive lookup will use a bloom filter.
-
setUseBloomFilterForArchives
public void setUseBloomFilterForArchives(boolean useBloomFilterForArchives)
Description copied from interface:Context
Set bloom filter flag value.- Specified by:
setUseBloomFilterForArchives
in interfaceContext
- Parameters:
useBloomFilterForArchives
- The new fast class path scan flag
-
setParallelAnnotationScanning
public void setParallelAnnotationScanning(boolean parallelAnnotationScanning)
Description copied from interface:Context
Set the parallel annotation scanning value.- Specified by:
setParallelAnnotationScanning
in interfaceContext
- Parameters:
parallelAnnotationScanning
- new parallel annotation scanning flag
-
getParallelAnnotationScanning
public boolean getParallelAnnotationScanning()
- Specified by:
getParallelAnnotationScanning
in interfaceContext
- Returns:
- the value of the parallel annotation scanning flag. If true, it will dispatch scanning to the utility executor.
-
getCharsetMapper
public CharsetMapper getCharsetMapper()
- Returns:
- the Locale to character set mapper for this Context.
-
setCharsetMapper
public void setCharsetMapper(CharsetMapper mapper)
Set the Locale to character set mapper for this Context.- Parameters:
mapper
- The new mapper
-
getCharset
public java.lang.String getCharset(java.util.Locale locale)
Description copied from interface:Context
Obtain the character set name to use with the given Locale. Note that different Contexts may have different mappings of Locale to character set.- Specified by:
getCharset
in interfaceContext
- Parameters:
locale
- The locale for which the mapped character set should be returned- Returns:
- The name of the character set to use with the given Locale
-
getConfigFile
public java.net.URL getConfigFile()
Description copied from interface:Context
Return the URL of the XML descriptor for this context.- Specified by:
getConfigFile
in interfaceContext
- Returns:
- The URL of the XML descriptor for this context
-
setConfigFile
public void setConfigFile(java.net.URL configFile)
Description copied from interface:Context
Set the URL of the XML descriptor for this context.- Specified by:
setConfigFile
in interfaceContext
- Parameters:
configFile
- The URL of the XML descriptor for this context.
-
getConfigured
public boolean getConfigured()
Description copied from interface:Context
Return the "correctly configured" flag for this Context.- Specified by:
getConfigured
in interfaceContext
- Returns:
true
if the Context has been correctly configured, otherwisefalse
-
setConfigured
public void setConfigured(boolean configured)
Set the "correctly configured" flag for this Context. This can be set to false by startup listeners that detect a fatal configuration error to avoid the application from being made available.- Specified by:
setConfigured
in interfaceContext
- Parameters:
configured
- The new correctly configured flag
-
getCookies
public boolean getCookies()
Description copied from interface:Context
Return the "use cookies for session ids" flag.- Specified by:
getCookies
in interfaceContext
- Returns:
true
if it is permitted to use cookies to track session IDs for this web application, otherwisefalse
-
setCookies
public void setCookies(boolean cookies)
Set the "use cookies for session ids" flag.- Specified by:
setCookies
in interfaceContext
- Parameters:
cookies
- The new flag
-
getSessionCookieName
public java.lang.String getSessionCookieName()
Gets the name to use for session cookies. Overrides any setting that may be specified by the application.- Specified by:
getSessionCookieName
in interfaceContext
- Returns:
- The value of the default session cookie name or null if not specified
-
setSessionCookieName
public void setSessionCookieName(java.lang.String sessionCookieName)
Sets the name to use for session cookies. Overrides any setting that may be specified by the application.- Specified by:
setSessionCookieName
in interfaceContext
- Parameters:
sessionCookieName
- The name to use
-
getUseHttpOnly
public boolean getUseHttpOnly()
Gets the value of the use HttpOnly cookies for session cookies flag.- Specified by:
getUseHttpOnly
in interfaceContext
- Returns:
true
if the HttpOnly flag should be set on session cookies
-
setUseHttpOnly
public void setUseHttpOnly(boolean useHttpOnly)
Sets the use HttpOnly cookies for session cookies flag.- Specified by:
setUseHttpOnly
in interfaceContext
- Parameters:
useHttpOnly
- Set totrue
to use HttpOnly cookies for session cookies
-
getSessionCookieDomain
public java.lang.String getSessionCookieDomain()
Gets the domain to use for session cookies. Overrides any setting that may be specified by the application.- Specified by:
getSessionCookieDomain
in interfaceContext
- Returns:
- The value of the default session cookie domain or null if not specified
-
setSessionCookieDomain
public void setSessionCookieDomain(java.lang.String sessionCookieDomain)
Sets the domain to use for session cookies. Overrides any setting that may be specified by the application.- Specified by:
setSessionCookieDomain
in interfaceContext
- Parameters:
sessionCookieDomain
- The domain to use
-
getSessionCookiePath
public java.lang.String getSessionCookiePath()
Gets the path to use for session cookies. Overrides any setting that may be specified by the application.- Specified by:
getSessionCookiePath
in interfaceContext
- Returns:
- The value of the default session cookie path or null if not specified
-
setSessionCookiePath
public void setSessionCookiePath(java.lang.String sessionCookiePath)
Sets the path to use for session cookies. Overrides any setting that may be specified by the application.- Specified by:
setSessionCookiePath
in interfaceContext
- Parameters:
sessionCookiePath
- The path to use
-
getSessionCookiePathUsesTrailingSlash
public boolean getSessionCookiePathUsesTrailingSlash()
Description copied from interface:Context
Is a / added to the end of the session cookie path to ensure browsers, particularly IE, don't send a session cookie for context /foo with requests intended for context /foobar.- Specified by:
getSessionCookiePathUsesTrailingSlash
in interfaceContext
- Returns:
true
if the slash is added, otherwisefalse
-
setSessionCookiePathUsesTrailingSlash
public void setSessionCookiePathUsesTrailingSlash(boolean sessionCookiePathUsesTrailingSlash)
Description copied from interface:Context
Configures if a / is added to the end of the session cookie path to ensure browsers, particularly IE, don't send a session cookie for context /foo with requests intended for context /foobar.- Specified by:
setSessionCookiePathUsesTrailingSlash
in interfaceContext
- Parameters:
sessionCookiePathUsesTrailingSlash
-true
if the slash is should be added, otherwisefalse
-
getCrossContext
public boolean getCrossContext()
Description copied from interface:Context
Return the "allow crossing servlet contexts" flag.- Specified by:
getCrossContext
in interfaceContext
- Returns:
true
if cross-contest requests are allowed from this web applications, otherwisefalse
-
setCrossContext
public void setCrossContext(boolean crossContext)
Set the "allow crossing servlet contexts" flag.- Specified by:
setCrossContext
in interfaceContext
- Parameters:
crossContext
- The new cross contexts flag
-
getDefaultContextXml
public java.lang.String getDefaultContextXml()
-
setDefaultContextXml
public void setDefaultContextXml(java.lang.String defaultContextXml)
Set the location of the default context xml that will be used. If not absolute, it'll be made relative to the engine's base dir ( which defaults to catalina.base system property ).- Parameters:
defaultContextXml
- The default web xml
-
getDefaultWebXml
public java.lang.String getDefaultWebXml()
-
setDefaultWebXml
public void setDefaultWebXml(java.lang.String defaultWebXml)
Set the location of the default web xml that will be used. If not absolute, it'll be made relative to the engine's base dir ( which defaults to catalina.base system property ).- Parameters:
defaultWebXml
- The default web xml
-
getStartupTime
public long getStartupTime()
Gets the time (in milliseconds) it took to start this context.- Returns:
- Time (in milliseconds) it took to start this context.
-
setStartupTime
public void setStartupTime(long startupTime)
-
getTldScanTime
public long getTldScanTime()
-
setTldScanTime
public void setTldScanTime(long tldScanTime)
-
getDenyUncoveredHttpMethods
public boolean getDenyUncoveredHttpMethods()
Description copied from interface:Context
Return the deny-uncovered-http-methods flag for this web application.- Specified by:
getDenyUncoveredHttpMethods
in interfaceContext
- Returns:
- The current value of the flag
-
setDenyUncoveredHttpMethods
public void setDenyUncoveredHttpMethods(boolean denyUncoveredHttpMethods)
Description copied from interface:Context
Set the deny-uncovered-http-methods flag for this web application.- Specified by:
setDenyUncoveredHttpMethods
in interfaceContext
- Parameters:
denyUncoveredHttpMethods
- The new deny-uncovered-http-methods flag
-
getDisplayName
public java.lang.String getDisplayName()
Description copied from interface:Context
Return the display name of this web application.- Specified by:
getDisplayName
in interfaceContext
- Returns:
- the display name of this web application.
-
getAltDDName
public java.lang.String getAltDDName()
Description copied from interface:Context
Return the alternate Deployment Descriptor name.- Specified by:
getAltDDName
in interfaceContext
- Returns:
- the alternate Deployment Descriptor name.
-
setAltDDName
public void setAltDDName(java.lang.String altDDName)
Set an alternate Deployment Descriptor name.- Specified by:
setAltDDName
in interfaceContext
- Parameters:
altDDName
- The new name
-
setDisplayName
public void setDisplayName(java.lang.String displayName)
Set the display name of this web application.- Specified by:
setDisplayName
in interfaceContext
- Parameters:
displayName
- The new display name
-
getDistributable
public boolean getDistributable()
Description copied from interface:Context
Get the distributable flag for this web application.- Specified by:
getDistributable
in interfaceContext
- Returns:
- the distributable flag for this web application.
-
setDistributable
public void setDistributable(boolean distributable)
Set the distributable flag for this web application.- Specified by:
setDistributable
in interfaceContext
- Parameters:
distributable
- The new distributable flag
-
getDocBase
public java.lang.String getDocBase()
Description copied from interface:Context
Obtain the document root for this Context.- Specified by:
getDocBase
in interfaceContext
- Returns:
- An absolute pathname or a relative (to the Host's appBase) pathname.
-
setDocBase
public void setDocBase(java.lang.String docBase)
Description copied from interface:Context
Set the document root for this Context. This can be either an absolute pathname or a relative pathname. Relative pathnames are relative to the containing Host's appBase.- Specified by:
setDocBase
in interfaceContext
- Parameters:
docBase
- The new document root
-
getJ2EEApplication
public java.lang.String getJ2EEApplication()
-
setJ2EEApplication
public void setJ2EEApplication(java.lang.String j2EEApplication)
-
getJ2EEServer
public java.lang.String getJ2EEServer()
-
setJ2EEServer
public void setJ2EEServer(java.lang.String j2EEServer)
-
getLoader
public Loader getLoader()
-
setLoader
public void setLoader(Loader loader)
Description copied from interface:Context
Set the Loader with which this Context is associated.
-
getManager
public Manager getManager()
- Specified by:
getManager
in interfaceContext
- Returns:
- the Manager with which this Context is associated. If there is
no associated Manager, return
null
.
-
setManager
public void setManager(Manager manager)
Description copied from interface:Context
Set the Manager with which this Context is associated.- Specified by:
setManager
in interfaceContext
- Parameters:
manager
- The newly associated Manager
-
getIgnoreAnnotations
public boolean getIgnoreAnnotations()
Description copied from interface:Context
Determine if annotations parsing is currently disabled- Specified by:
getIgnoreAnnotations
in interfaceContext
- Returns:
- the boolean on the annotations parsing.
-
setIgnoreAnnotations
public void setIgnoreAnnotations(boolean ignoreAnnotations)
Set the boolean on the annotations parsing for this web application.- Specified by:
setIgnoreAnnotations
in interfaceContext
- Parameters:
ignoreAnnotations
- The boolean on the annotations parsing
-
getLoginConfig
public LoginConfig getLoginConfig()
- Specified by:
getLoginConfig
in interfaceContext
- Returns:
- the login configuration descriptor for this web application.
-
setLoginConfig
public void setLoginConfig(LoginConfig config)
Set the login configuration descriptor for this web application.- Specified by:
setLoginConfig
in interfaceContext
- Parameters:
config
- The new login configuration
-
getNamingResources
public NamingResourcesImpl getNamingResources()
- Specified by:
getNamingResources
in interfaceContext
- Returns:
- the naming resources associated with this web application.
-
setNamingResources
public void setNamingResources(NamingResourcesImpl namingResources)
Set the naming resources for this web application.- Specified by:
setNamingResources
in interfaceContext
- Parameters:
namingResources
- The new naming resources
-
getPath
public java.lang.String getPath()
-
setPath
public void setPath(java.lang.String path)
Set the context path for this Context.
-
getPublicId
public java.lang.String getPublicId()
- Specified by:
getPublicId
in interfaceContext
- Returns:
- the public identifier of the deployment descriptor DTD that is currently being parsed.
-
setPublicId
public void setPublicId(java.lang.String publicId)
Set the public identifier of the deployment descriptor DTD that is currently being parsed.- Specified by:
setPublicId
in interfaceContext
- Parameters:
publicId
- The public identifier
-
getReloadable
public boolean getReloadable()
- Specified by:
getReloadable
in interfaceContext
- Returns:
- the reloadable flag for this web application.
-
getOverride
public boolean getOverride()
- Specified by:
getOverride
in interfaceContext
- Returns:
- the default context override flag for this web application.
-
getOriginalDocBase
public java.lang.String getOriginalDocBase()
- Returns:
- the original document root for this Context. This can be an absolute pathname, a relative pathname, or a URL. Is only set as deployment has change docRoot!
-
setOriginalDocBase
public void setOriginalDocBase(java.lang.String docBase)
Set the original document root for this Context. This can be an absolute pathname, a relative pathname, or a URL.- Parameters:
docBase
- The original document root
-
getParentClassLoader
public java.lang.ClassLoader getParentClassLoader()
Description copied from class:ContainerBase
Return the parent class loader (if any) for this web application. This call is meaningful only after a Loader has been configured.- Specified by:
getParentClassLoader
in interfaceContainer
- Overrides:
getParentClassLoader
in classContainerBase
- Returns:
- the parent class loader (if any) for this web application. This call is meaningful only after a Loader has been configured.
-
getPrivileged
public boolean getPrivileged()
- Specified by:
getPrivileged
in interfaceContext
- Returns:
- the privileged flag for this web application.
-
setPrivileged
public void setPrivileged(boolean privileged)
Set the privileged flag for this web application.- Specified by:
setPrivileged
in interfaceContext
- Parameters:
privileged
- The new privileged flag
-
setReloadable
public void setReloadable(boolean reloadable)
Set the reloadable flag for this web application.- Specified by:
setReloadable
in interfaceContext
- Parameters:
reloadable
- The new reloadable flag
-
setOverride
public void setOverride(boolean override)
Set the default context override flag for this web application.- Specified by:
setOverride
in interfaceContext
- Parameters:
override
- The new override flag
-
setReplaceWelcomeFiles
public void setReplaceWelcomeFiles(boolean replaceWelcomeFiles)
Set the "replace welcome files" property.- Parameters:
replaceWelcomeFiles
- The new property value
-
getServletContext
public ServletContext getServletContext()
- Specified by:
getServletContext
in interfaceContext
- Returns:
- the servlet context for which this Context is a facade.
-
getSessionTimeout
public int getSessionTimeout()
- Specified by:
getSessionTimeout
in interfaceContext
- Returns:
- the default session timeout (in minutes) for this web application.
-
setSessionTimeout
public void setSessionTimeout(int timeout)
Set the default session timeout (in minutes) for this web application.- Specified by:
setSessionTimeout
in interfaceContext
- Parameters:
timeout
- The new default session timeout
-
getSwallowOutput
public boolean getSwallowOutput()
- Specified by:
getSwallowOutput
in interfaceContext
- Returns:
- the value of the swallowOutput flag.
-
setSwallowOutput
public void setSwallowOutput(boolean swallowOutput)
Set the value of the swallowOutput flag. If set to true, the system.out and system.err will be redirected to the logger during a servlet execution.- Specified by:
setSwallowOutput
in interfaceContext
- Parameters:
swallowOutput
- The new value
-
getUnloadDelay
public long getUnloadDelay()
- Returns:
- the value of the unloadDelay flag.
-
setUnloadDelay
public void setUnloadDelay(long unloadDelay)
Set the value of the unloadDelay flag, which represents the amount of ms that the container will wait when unloading servlets. Setting this to a small value may cause more requests to fail to complete when stopping a web application.- Parameters:
unloadDelay
- The new value
-
getUnpackWAR
public boolean getUnpackWAR()
- Returns:
- unpack WAR flag.
-
setUnpackWAR
public void setUnpackWAR(boolean unpackWAR)
Unpack WAR flag mutator.- Parameters:
unpackWAR
-true
to unpack WARs on deployment
-
getCopyXML
public boolean getCopyXML()
Flag which indicates if bundled context.xml files should be copied to the config folder. The doesn't occur by default.- Returns:
true
if theMETA-INF/context.xml
file included in a WAR will be copied to the host configuration base folder on deployment
-
setCopyXML
public void setCopyXML(boolean copyXML)
Allows copying a bundled context.xml file to the host configuration base folder on deployment.- Parameters:
copyXML
- the new flag value
-
getWrapperClass
public java.lang.String getWrapperClass()
- Specified by:
getWrapperClass
in interfaceContext
- Returns:
- the Java class name of the Wrapper implementation used for servlets registered in this Context.
-
setWrapperClass
public void setWrapperClass(java.lang.String wrapperClassName)
Set the Java class name of the Wrapper implementation used for servlets registered in this Context.- Specified by:
setWrapperClass
in interfaceContext
- Parameters:
wrapperClassName
- The new wrapper class name- Throws:
java.lang.IllegalArgumentException
- if the specified wrapper class cannot be found or is not a subclass of StandardWrapper
-
getResources
public WebResourceRoot getResources()
- Specified by:
getResources
in interfaceContext
- Returns:
- the Resources with which this Context is associated.
-
setResources
public void setResources(WebResourceRoot resources)
Description copied from interface:Context
Set the Resources object with which this Context is associated.- Specified by:
setResources
in interfaceContext
- Parameters:
resources
- The newly associated Resources
-
getJspConfigDescriptor
public JspConfigDescriptor getJspConfigDescriptor()
- Specified by:
getJspConfigDescriptor
in interfaceContext
- Returns:
- the JSP configuration for this context. Will be null if there is no JSP configuration.
-
setJspConfigDescriptor
public void setJspConfigDescriptor(JspConfigDescriptor descriptor)
Description copied from interface:Context
Set the JspConfigDescriptor for this context. A null value indicates there is not JSP configuration.- Specified by:
setJspConfigDescriptor
in interfaceContext
- Parameters:
descriptor
- the new JSP configuration
-
getThreadBindingListener
public ThreadBindingListener getThreadBindingListener()
- Specified by:
getThreadBindingListener
in interfaceContext
- Returns:
- the associated ThreadBindingListener.
-
setThreadBindingListener
public void setThreadBindingListener(ThreadBindingListener threadBindingListener)
Description copied from interface:Context
Get the associated ThreadBindingListener.- Specified by:
setThreadBindingListener
in interfaceContext
- Parameters:
threadBindingListener
- Set the listener that will receive notifications when entering and exiting the application scope
-
getJndiExceptionOnFailedWrite
public boolean getJndiExceptionOnFailedWrite()
- Returns:
- whether or not an attempt to modify the JNDI context will trigger an exception or if the request will be ignored.
-
setJndiExceptionOnFailedWrite
public void setJndiExceptionOnFailedWrite(boolean jndiExceptionOnFailedWrite)
Controls whether or not an attempt to modify the JNDI context will trigger an exception or if the request will be ignored.- Parameters:
jndiExceptionOnFailedWrite
-false
to avoid an exception
-
getCharsetMapperClass
public java.lang.String getCharsetMapperClass()
- Returns:
- the Locale to character set mapper class for this Context.
-
setCharsetMapperClass
public void setCharsetMapperClass(java.lang.String mapper)
Set the Locale to character set mapper class for this Context.- Parameters:
mapper
- The new mapper class
-
getWorkPath
public java.lang.String getWorkPath()
Get the absolute path to the work dir. To avoid duplication.- Returns:
- The work path
-
getWorkDir
public java.lang.String getWorkDir()
- Returns:
- the work directory for this Context.
-
setWorkDir
public void setWorkDir(java.lang.String workDir)
Set the work directory for this Context.- Parameters:
workDir
- The new work directory
-
getClearReferencesRmiTargets
public boolean getClearReferencesRmiTargets()
-
setClearReferencesRmiTargets
public void setClearReferencesRmiTargets(boolean clearReferencesRmiTargets)
-
getClearReferencesStopThreads
public boolean getClearReferencesStopThreads()
- Returns:
- the clearReferencesStopThreads flag for this Context.
-
setClearReferencesStopThreads
public void setClearReferencesStopThreads(boolean clearReferencesStopThreads)
Set the clearReferencesStopThreads feature for this Context.- Parameters:
clearReferencesStopThreads
- The new flag value
-
getClearReferencesStopTimerThreads
public boolean getClearReferencesStopTimerThreads()
- Returns:
- the clearReferencesStopTimerThreads flag for this Context.
-
setClearReferencesStopTimerThreads
public void setClearReferencesStopTimerThreads(boolean clearReferencesStopTimerThreads)
Set the clearReferencesStopTimerThreads feature for this Context.- Parameters:
clearReferencesStopTimerThreads
- The new flag value
-
getClearReferencesHttpClientKeepAliveThread
public boolean getClearReferencesHttpClientKeepAliveThread()
- Returns:
- the clearReferencesHttpClientKeepAliveThread flag for this Context.
-
setClearReferencesHttpClientKeepAliveThread
public void setClearReferencesHttpClientKeepAliveThread(boolean clearReferencesHttpClientKeepAliveThread)
Set the clearReferencesHttpClientKeepAliveThread feature for this Context.- Parameters:
clearReferencesHttpClientKeepAliveThread
- The new flag value
-
getRenewThreadsWhenStoppingContext
public boolean getRenewThreadsWhenStoppingContext()
-
setRenewThreadsWhenStoppingContext
public void setRenewThreadsWhenStoppingContext(boolean renewThreadsWhenStoppingContext)
-
getClearReferencesObjectStreamClassCaches
public boolean getClearReferencesObjectStreamClassCaches()
-
setClearReferencesObjectStreamClassCaches
public void setClearReferencesObjectStreamClassCaches(boolean clearReferencesObjectStreamClassCaches)
-
getClearReferencesThreadLocals
public boolean getClearReferencesThreadLocals()
-
setClearReferencesThreadLocals
public void setClearReferencesThreadLocals(boolean clearReferencesThreadLocals)
-
getSkipMemoryLeakChecksOnJvmShutdown
public boolean getSkipMemoryLeakChecksOnJvmShutdown()
-
setSkipMemoryLeakChecksOnJvmShutdown
public void setSkipMemoryLeakChecksOnJvmShutdown(boolean skipMemoryLeakChecksOnJvmShutdown)
-
getFailCtxIfServletStartFails
public java.lang.Boolean getFailCtxIfServletStartFails()
-
setFailCtxIfServletStartFails
public void setFailCtxIfServletStartFails(java.lang.Boolean failCtxIfServletStartFails)
-
getComputedFailCtxIfServletStartFails
protected boolean getComputedFailCtxIfServletStartFails()
-
addApplicationListener
public void addApplicationListener(java.lang.String listener)
Add a new Listener class name to the set of Listeners configured for this application.- Specified by:
addApplicationListener
in interfaceContext
- Parameters:
listener
- Java class name of a listener class
-
addApplicationParameter
public void addApplicationParameter(ApplicationParameter parameter)
Add a new application parameter for this application.- Specified by:
addApplicationParameter
in interfaceContext
- Parameters:
parameter
- The new application parameter
-
addChild
public void addChild(Container child)
Add a child Container, only if the proposed child is an implementation of Wrapper.- Specified by:
addChild
in interfaceContainer
- Overrides:
addChild
in classContainerBase
- Parameters:
child
- Child container to be added- Throws:
java.lang.IllegalArgumentException
- if the proposed container is not an implementation of Wrapper
-
addConstraint
public void addConstraint(SecurityConstraint constraint)
Add a security constraint to the set for this web application.- Specified by:
addConstraint
in interfaceContext
- Parameters:
constraint
- the new security constraint
-
addErrorPage
public void addErrorPage(ErrorPage errorPage)
Add an error page for the specified error or Java exception.- Specified by:
addErrorPage
in interfaceContext
- Parameters:
errorPage
- The error page definition to be added
-
addFilterDef
public void addFilterDef(FilterDef filterDef)
Add a filter definition to this Context.- Specified by:
addFilterDef
in interfaceContext
- Parameters:
filterDef
- The filter definition to be added
-
addFilterMap
public void addFilterMap(FilterMap filterMap)
Add a filter mapping to this Context at the end of the current set of filter mappings.- Specified by:
addFilterMap
in interfaceContext
- Parameters:
filterMap
- The filter mapping to be added- Throws:
java.lang.IllegalArgumentException
- if the specified filter name does not match an existing filter definition, or the filter mapping is malformed
-
addFilterMapBefore
public void addFilterMapBefore(FilterMap filterMap)
Add a filter mapping to this Context before the mappings defined in the deployment descriptor but after any other mappings added via this method.- Specified by:
addFilterMapBefore
in interfaceContext
- Parameters:
filterMap
- The filter mapping to be added- Throws:
java.lang.IllegalArgumentException
- if the specified filter name does not match an existing filter definition, or the filter mapping is malformed
-
addLocaleEncodingMappingParameter
public void addLocaleEncodingMappingParameter(java.lang.String locale, java.lang.String encoding)
Add a Locale Encoding Mapping (see Sec 5.4 of Servlet spec 2.4)- Specified by:
addLocaleEncodingMappingParameter
in interfaceContext
- Parameters:
locale
- locale to map an encoding forencoding
- encoding to be used for a give locale
-
addMessageDestination
public void addMessageDestination(MessageDestination md)
Add a message destination for this web application.- Parameters:
md
- New message destination
-
addMimeMapping
public void addMimeMapping(java.lang.String extension, java.lang.String mimeType)
Add a new MIME mapping, replacing any existing mapping for the specified extension.- Specified by:
addMimeMapping
in interfaceContext
- Parameters:
extension
- Filename extension being mappedmimeType
- Corresponding MIME type
-
addParameter
public void addParameter(java.lang.String name, java.lang.String value)
Add a new context initialization parameter.- Specified by:
addParameter
in interfaceContext
- Parameters:
name
- Name of the new parametervalue
- Value of the new parameter- Throws:
java.lang.IllegalArgumentException
- if the name or value is missing, or if this context initialization parameter has already been registered
-
addRoleMapping
public void addRoleMapping(java.lang.String role, java.lang.String link)
Add a security role reference for this web application.- Specified by:
addRoleMapping
in interfaceContext
- Parameters:
role
- Security role used in the applicationlink
- Actual security role to check for
-
addSecurityRole
public void addSecurityRole(java.lang.String role)
Add a new security role for this web application.- Specified by:
addSecurityRole
in interfaceContext
- Parameters:
role
- New security role
-
addServletMappingDecoded
public void addServletMappingDecoded(java.lang.String pattern, java.lang.String name, boolean jspWildCard)
Add a new servlet mapping, replacing any existing mapping for the specified pattern.- Specified by:
addServletMappingDecoded
in interfaceContext
- Parameters:
pattern
- URL pattern to be mappedname
- Name of the corresponding servlet to executejspWildCard
- true if name identifies the JspServlet and pattern contains a wildcard; false otherwise- Throws:
java.lang.IllegalArgumentException
- if the specified servlet name is not known to this Context
-
addWatchedResource
public void addWatchedResource(java.lang.String name)
Add a new watched resource to the set recognized by this Context.- Specified by:
addWatchedResource
in interfaceContext
- Parameters:
name
- New watched resource file name
-
addWelcomeFile
public void addWelcomeFile(java.lang.String name)
Add a new welcome file to the set recognized by this Context.- Specified by:
addWelcomeFile
in interfaceContext
- Parameters:
name
- New welcome file name
-
addWrapperLifecycle
public void addWrapperLifecycle(java.lang.String listener)
Add the classname of a LifecycleListener to be added to each Wrapper appended to this Context.- Specified by:
addWrapperLifecycle
in interfaceContext
- Parameters:
listener
- Java class name of a LifecycleListener class
-
addWrapperListener
public void addWrapperListener(java.lang.String listener)
Add the classname of a ContainerListener to be added to each Wrapper appended to this Context.- Specified by:
addWrapperListener
in interfaceContext
- Parameters:
listener
- Java class name of a ContainerListener class
-
createWrapper
public Wrapper createWrapper()
Factory method to create and return a new Wrapper instance, of the Java implementation class appropriate for this Context implementation. The constructor of the instantiated Wrapper will have been called, but no properties will have been set.- Specified by:
createWrapper
in interfaceContext
- Returns:
- a newly created wrapper instance that is used to wrap a Servlet
-
findApplicationListeners
public java.lang.String[] findApplicationListeners()
Return the set of application listener class names configured for this application.- Specified by:
findApplicationListeners
in interfaceContext
- Returns:
- the set of application listener class names configured for this application.
-
findApplicationParameters
public ApplicationParameter[] findApplicationParameters()
Return the set of application parameters for this application.- Specified by:
findApplicationParameters
in interfaceContext
- Returns:
- the set of application parameters for this application.
-
findConstraints
public SecurityConstraint[] findConstraints()
Return the security constraints for this web application. If there are none, a zero-length array is returned.- Specified by:
findConstraints
in interfaceContext
- Returns:
- the set of security constraints for this web application. If there are none, a zero-length array is returned.
-
findErrorPage
public ErrorPage findErrorPage(int errorCode)
Return the error page entry for the specified HTTP error code, if any; otherwise returnnull
.- Specified by:
findErrorPage
in interfaceContext
- Parameters:
errorCode
- Error code to look up- Returns:
- the error page entry for the specified HTTP error code,
if any; otherwise return
null
.
-
findErrorPage
public ErrorPage findErrorPage(java.lang.Throwable exceptionType)
Description copied from interface:Context
Find and return the ErrorPage instance for the specified exception's class, or an ErrorPage instance for the closest superclass for which there is such a definition. If no associated ErrorPage instance is found, returnnull
.- Specified by:
findErrorPage
in interfaceContext
- Parameters:
exceptionType
- The exception type for which to find an ErrorPage- Returns:
- the error page entry for the specified Java exception type,
if any; otherwise return
null
.
-
findErrorPages
public ErrorPage[] findErrorPages()
Return the set of defined error pages for all specified error codes and exception types.- Specified by:
findErrorPages
in interfaceContext
- Returns:
- the set of defined error pages for all specified error codes and exception types.
-
findFilterDef
public FilterDef findFilterDef(java.lang.String filterName)
Return the filter definition for the specified filter name, if any; otherwise returnnull
.- Specified by:
findFilterDef
in interfaceContext
- Parameters:
filterName
- Filter name to look up- Returns:
- the filter definition for the specified filter name, if any;
otherwise return
null
.
-
findFilterDefs
public FilterDef[] findFilterDefs()
- Specified by:
findFilterDefs
in interfaceContext
- Returns:
- the set of defined filters for this Context.
-
findFilterMaps
public FilterMap[] findFilterMaps()
- Specified by:
findFilterMaps
in interfaceContext
- Returns:
- the set of filter mappings for this Context.
-
findMessageDestination
public MessageDestination findMessageDestination(java.lang.String name)
- Parameters:
name
- Name of the desired message destination- Returns:
- the message destination with the specified name, if any;
otherwise, return
null
.
-
findMessageDestinations
public MessageDestination[] findMessageDestinations()
- Returns:
- the set of defined message destinations for this web application. If none have been defined, a zero-length array is returned.
-
findMimeMapping
public java.lang.String findMimeMapping(java.lang.String extension)
- Specified by:
findMimeMapping
in interfaceContext
- Parameters:
extension
- Extension to map to a MIME type- Returns:
- the MIME type to which the specified extension is mapped,
if any; otherwise return
null
.
-
findMimeMappings
public java.lang.String[] findMimeMappings()
- Specified by:
findMimeMappings
in interfaceContext
- Returns:
- the extensions for which MIME mappings are defined. If there are none, a zero-length array is returned.
-
findParameter
public java.lang.String findParameter(java.lang.String name)
- Specified by:
findParameter
in interfaceContext
- Parameters:
name
- Name of the parameter to return- Returns:
- the value for the specified context initialization
parameter name, if any; otherwise return
null
.
-
findParameters
public java.lang.String[] findParameters()
- Specified by:
findParameters
in interfaceContext
- Returns:
- the names of all defined context initialization parameters for this Context. If no parameters are defined, a zero-length array is returned.
-
findRoleMapping
public java.lang.String findRoleMapping(java.lang.String role)
For the given security role (as used by an application), return the corresponding role name (as defined by the underlying Realm) if there is one. Otherwise, return the specified role unchanged.- Specified by:
findRoleMapping
in interfaceContext
- Parameters:
role
- Security role to map- Returns:
- the role name
-
findSecurityRole
public boolean findSecurityRole(java.lang.String role)
- Specified by:
findSecurityRole
in interfaceContext
- Parameters:
role
- Security role to verify- Returns:
true
if the specified security role is defined for this application; otherwise returnfalse
.
-
findSecurityRoles
public java.lang.String[] findSecurityRoles()
- Specified by:
findSecurityRoles
in interfaceContext
- Returns:
- the security roles defined for this application. If none have been defined, a zero-length array is returned.
-
findServletMapping
public java.lang.String findServletMapping(java.lang.String pattern)
- Specified by:
findServletMapping
in interfaceContext
- Parameters:
pattern
- Pattern for which a mapping is requested- Returns:
- the servlet name mapped by the specified pattern (if any);
otherwise return
null
.
-
findServletMappings
public java.lang.String[] findServletMappings()
- Specified by:
findServletMappings
in interfaceContext
- Returns:
- the patterns of all defined servlet mappings for this Context. If no mappings are defined, a zero-length array is returned.
-
findWelcomeFile
public boolean findWelcomeFile(java.lang.String name)
- Specified by:
findWelcomeFile
in interfaceContext
- Parameters:
name
- Welcome file to verify- Returns:
true
if the specified welcome file is defined for this Context; otherwise returnfalse
.
-
findWatchedResources
public java.lang.String[] findWatchedResources()
- Specified by:
findWatchedResources
in interfaceContext
- Returns:
- the set of watched resources for this Context. If none are defined, a zero length array will be returned.
-
findWelcomeFiles
public java.lang.String[] findWelcomeFiles()
- Specified by:
findWelcomeFiles
in interfaceContext
- Returns:
- the set of welcome files defined for this Context. If none are defined, a zero-length array is returned.
-
findWrapperLifecycles
public java.lang.String[] findWrapperLifecycles()
- Specified by:
findWrapperLifecycles
in interfaceContext
- Returns:
- the set of LifecycleListener classes that will be added to newly created Wrappers automatically.
-
findWrapperListeners
public java.lang.String[] findWrapperListeners()
- Specified by:
findWrapperListeners
in interfaceContext
- Returns:
- the set of ContainerListener classes that will be added to newly created Wrappers automatically.
-
reload
public void reload()
Reload this web application, if reloading is supported.IMPLEMENTATION NOTE: This method is designed to deal with reloads required by changes to classes in the underlying repositories of our class loader and changes to the web.xml file. It does not handle changes to any context.xml file. If the context.xml has changed, you should stop this Context and create (and start) a new Context instance instead. Note that there is additional code in
CoyoteAdapter#postParseRequest()
to handle mapping requests to paused Contexts.
-
removeApplicationListener
public void removeApplicationListener(java.lang.String listener)
Remove the specified application listener class from the set of listeners for this application.- Specified by:
removeApplicationListener
in interfaceContext
- Parameters:
listener
- Java class name of the listener to be removed
-
removeApplicationParameter
public void removeApplicationParameter(java.lang.String name)
Remove the application parameter with the specified name from the set for this application.- Specified by:
removeApplicationParameter
in interfaceContext
- Parameters:
name
- Name of the application parameter to remove
-
removeChild
public void removeChild(Container child)
Add a child Container, only if the proposed child is an implementation of Wrapper.- Specified by:
removeChild
in interfaceContainer
- Overrides:
removeChild
in classContainerBase
- Parameters:
child
- Child container to be added- Throws:
java.lang.IllegalArgumentException
- if the proposed container is not an implementation of Wrapper
-
removeConstraint
public void removeConstraint(SecurityConstraint constraint)
Remove the specified security constraint from this web application.- Specified by:
removeConstraint
in interfaceContext
- Parameters:
constraint
- Constraint to be removed
-
removeErrorPage
public void removeErrorPage(ErrorPage errorPage)
Remove the error page for the specified error code or Java language exception, if it exists; otherwise, no action is taken.- Specified by:
removeErrorPage
in interfaceContext
- Parameters:
errorPage
- The error page definition to be removed
-
removeFilterDef
public void removeFilterDef(FilterDef filterDef)
Remove the specified filter definition from this Context, if it exists; otherwise, no action is taken.- Specified by:
removeFilterDef
in interfaceContext
- Parameters:
filterDef
- Filter definition to be removed
-
removeFilterMap
public void removeFilterMap(FilterMap filterMap)
Remove a filter mapping from this Context.- Specified by:
removeFilterMap
in interfaceContext
- Parameters:
filterMap
- The filter mapping to be removed
-
removeMessageDestination
public void removeMessageDestination(java.lang.String name)
Remove any message destination with the specified name.- Parameters:
name
- Name of the message destination to remove
-
removeMimeMapping
public void removeMimeMapping(java.lang.String extension)
Remove the MIME mapping for the specified extension, if it exists; otherwise, no action is taken.- Specified by:
removeMimeMapping
in interfaceContext
- Parameters:
extension
- Extension to remove the mapping for
-
removeParameter
public void removeParameter(java.lang.String name)
Remove the context initialization parameter with the specified name, if it exists; otherwise, no action is taken.- Specified by:
removeParameter
in interfaceContext
- Parameters:
name
- Name of the parameter to remove
-
removeRoleMapping
public void removeRoleMapping(java.lang.String role)
Remove any security role reference for the specified name- Specified by:
removeRoleMapping
in interfaceContext
- Parameters:
role
- Security role (as used in the application) to remove
-
removeSecurityRole
public void removeSecurityRole(java.lang.String role)
Remove any security role with the specified name.- Specified by:
removeSecurityRole
in interfaceContext
- Parameters:
role
- Security role to remove
-
removeServletMapping
public void removeServletMapping(java.lang.String pattern)
Remove any servlet mapping for the specified pattern, if it exists; otherwise, no action is taken.- Specified by:
removeServletMapping
in interfaceContext
- Parameters:
pattern
- URL pattern of the mapping to remove
-
removeWatchedResource
public void removeWatchedResource(java.lang.String name)
Remove the specified watched resource name from the list associated with this Context.- Specified by:
removeWatchedResource
in interfaceContext
- Parameters:
name
- Name of the watched resource to be removed
-
removeWelcomeFile
public void removeWelcomeFile(java.lang.String name)
Remove the specified welcome file name from the list recognized by this Context.- Specified by:
removeWelcomeFile
in interfaceContext
- Parameters:
name
- Name of the welcome file to be removed
-
removeWrapperLifecycle
public void removeWrapperLifecycle(java.lang.String listener)
Remove a class name from the set of LifecycleListener classes that will be added to newly created Wrappers.- Specified by:
removeWrapperLifecycle
in interfaceContext
- Parameters:
listener
- Class name of a LifecycleListener class to be removed
-
removeWrapperListener
public void removeWrapperListener(java.lang.String listener)
Remove a class name from the set of ContainerListener classes that will be added to newly created Wrappers.- Specified by:
removeWrapperListener
in interfaceContext
- Parameters:
listener
- Class name of a ContainerListener class to be removed
-
getProcessingTime
public long getProcessingTime()
Gets the cumulative processing times of all servlets in this StandardContext.- Returns:
- Cumulative processing times of all servlets in this StandardContext
-
getMaxTime
public long getMaxTime()
Gets the maximum processing time of all servlets in this StandardContext.- Returns:
- Maximum processing time of all servlets in this StandardContext
-
getMinTime
public long getMinTime()
Gets the minimum processing time of all servlets in this StandardContext.- Returns:
- Minimum processing time of all servlets in this StandardContext
-
getRequestCount
public int getRequestCount()
Gets the cumulative request count of all servlets in this StandardContext.- Returns:
- Cumulative request count of all servlets in this StandardContext
-
getErrorCount
public int getErrorCount()
Gets the cumulative error count of all servlets in this StandardContext.- Returns:
- Cumulative error count of all servlets in this StandardContext
-
getRealPath
public java.lang.String getRealPath(java.lang.String path)
Return the real path for a given virtual path, if possible; otherwise returnnull
.- Specified by:
getRealPath
in interfaceContext
- Parameters:
path
- The path to the desired resource- Returns:
- the real path for a given virtual path, if possible; otherwise
return
null
.
-
dynamicServletCreated
public void dynamicServletCreated(Servlet servlet)
Hook to track which Servlets were created viaServletContext.createServlet(Class)
.- Parameters:
servlet
- the created Servlet
-
wasCreatedDynamicServlet
public boolean wasCreatedDynamicServlet(Servlet servlet)
-
filterStart
public boolean filterStart()
Configure and initialize the set of filters for this Context.- Returns:
true
if all filter initialization completed successfully, orfalse
otherwise.
-
filterStop
public boolean filterStop()
Finalize and release the set of filters for this Context.- Returns:
true
if all filter finalization completed successfully, orfalse
otherwise.
-
findFilterConfig
public FilterConfig findFilterConfig(java.lang.String name)
Find and return the initializedFilterConfig
for the specified filter name, if any; otherwise returnnull
.- Parameters:
name
- Name of the desired filter- Returns:
- the filter config object
-
listenerStart
public boolean listenerStart()
Configure the set of instantiated application event listeners for this Context.- Returns:
true
if all listeners wre initialized successfully, orfalse
otherwise.
-
listenerStop
public boolean listenerStop()
Send an application stop event to all interested listeners.- Returns:
true
if all events were sent successfully, orfalse
otherwise.
-
resourcesStart
public void resourcesStart() throws LifecycleException
Allocate resources, including proxy.- Throws:
LifecycleException
- if a start error occurs
-
resourcesStop
public boolean resourcesStop()
Deallocate resources and destroy proxy.- Returns:
true
if no error occurred
-
loadOnStartup
public boolean loadOnStartup(Container[] children)
Load and initialize all servlets marked "load on startup" in the web application deployment descriptor.- Parameters:
children
- Array of wrappers for all currently defined servlets (including those not declared load on startup)- Returns:
true
if load on startup was considered successful
-
startInternal
protected void startInternal() throws LifecycleException
Start this component and implement the requirements ofLifecycleBase.startInternal()
.- Overrides:
startInternal
in classContainerBase
- Throws:
LifecycleException
- if this component detects a fatal error that prevents this component from being used
-
createInstanceManager
public InstanceManager createInstanceManager()
Description copied from interface:Context
Factory method to create and return a new InstanceManager instance. This can be used for framework integration or easier configuration with custom Context implementations.- Specified by:
createInstanceManager
in interfaceContext
- Returns:
- the instance manager
-
stopInternal
protected void stopInternal() throws LifecycleException
Stop this component and implement the requirements ofLifecycleBase.stopInternal()
.- Overrides:
stopInternal
in classContainerBase
- Throws:
LifecycleException
- if this component detects a fatal error that prevents this component from being used
-
destroyInternal
protected void destroyInternal() throws LifecycleException
Destroy needs to clean up the context completely. The problem is that undoing all the config in start() and restoring a 'fresh' state is impossible. After stop()/destroy()/init()/start() we should have the same state as if a fresh start was done - i.e read modified web.xml, etc. This can only be done by completely removing the context object and remapping a new one, or by cleaning up everything.- Overrides:
destroyInternal
in classContainerBase
- Throws:
LifecycleException
- If the destruction fails
-
backgroundProcess
public void backgroundProcess()
Description copied from class:ContainerBase
Execute a periodic task, such as reloading, etc. This method will be invoked inside the classloading context of this container. Unexpected throwables will be caught and logged.- Specified by:
backgroundProcess
in interfaceContainer
- Overrides:
backgroundProcess
in classContainerBase
-
adjustURLPattern
protected java.lang.String adjustURLPattern(java.lang.String urlPattern)
Adjust the URL pattern to begin with a leading slash, if appropriate (i.e. we are running a servlet 2.2 application). Otherwise, return the specified URL pattern unchanged.- Parameters:
urlPattern
- The URL pattern to be adjusted (if needed) and returned- Returns:
- the URL pattern with a leading slash if needed
-
isServlet22
public boolean isServlet22()
Are we processing a version 2.2 deployment descriptor?- Specified by:
isServlet22
in interfaceContext
- Returns:
true
if running a legacy Servlet 2.2 application
-
addServletSecurity
public java.util.Set<java.lang.String> addServletSecurity(ServletRegistration.Dynamic registration, ServletSecurityElement servletSecurityElement)
Description copied from interface:Context
Notification that Servlet security has been dynamically set in aServletRegistration.Dynamic
- Specified by:
addServletSecurity
in interfaceContext
- Parameters:
registration
- Servlet security was modified forservletSecurityElement
- new security constraints for this Servlet- Returns:
- urls currently mapped to this registration that are already present in web.xml
-
bindThread
protected java.lang.ClassLoader bindThread()
Bind current thread, both for CL purposes and for JNDI ENC support during : startup, shutdown and reloading of the context.- Returns:
- the previous context class loader
-
unbindThread
protected void unbindThread(java.lang.ClassLoader oldContextClassLoader)
Unbind thread and restore the specified context classloader.- Parameters:
oldContextClassLoader
- the previous classloader
-
bind
public java.lang.ClassLoader bind(boolean usePrivilegedAction, java.lang.ClassLoader originalClassLoader)
Description copied from interface:ContextBind
Change the current thread context class loader to the web application class loader. If no web application class loader is defined, or if the current thread is already using the web application class loader then no change will be made. If the class loader is changed and aThreadBindingListener
is configured thenThreadBindingListener.bind()
will be called after the change has been made.- Specified by:
bind
in interfaceContextBind
- Parameters:
usePrivilegedAction
- Should aPrivilegedAction
be used when obtaining the current thread context class loader and setting the new one?originalClassLoader
- The current class loader if known to save this method having to look it up- Returns:
- If the class loader has been changed by the method it will return the thread context class loader in use when the method was called. If no change was made then this method returns null.
-
unbind
public void unbind(boolean usePrivilegedAction, java.lang.ClassLoader originalClassLoader)
Description copied from interface:ContextBind
Restore the current thread context class loader to the original class loader in used beforeContextBind.bind(boolean, ClassLoader)
was called. If no original class loader is passed to this method then no change will be made. If the class loader is changed and aThreadBindingListener
is configured thenThreadBindingListener.unbind()
will be called before the change is made.- Specified by:
unbind
in interfaceContextBind
- Parameters:
usePrivilegedAction
- Should aPrivilegedAction
be used when setting the current thread context class loader?originalClassLoader
- The class loader to restore as the thread context class loader
-
getNamingContextListener
public NamingContextListener getNamingContextListener()
Naming context listener accessor.- Returns:
- the naming context listener associated with the webapp
-
setNamingContextListener
public void setNamingContextListener(NamingContextListener namingContextListener)
Naming context listener setter.- Parameters:
namingContextListener
- the new naming context listener
-
getPaused
public boolean getPaused()
Description copied from interface:Context
Is this Context paused whilst it is reloaded?
-
fireRequestInitEvent
public boolean fireRequestInitEvent(ServletRequest request)
Description copied from interface:Context
Notify allServletRequestListener
s that a request has started.- Specified by:
fireRequestInitEvent
in interfaceContext
- Parameters:
request
- The request object that will be passed to the listener- Returns:
true
if the listeners fire successfully, elsefalse
-
fireRequestDestroyEvent
public boolean fireRequestDestroyEvent(ServletRequest request)
Description copied from interface:Context
Notify allServletRequestListener
s that a request has ended.- Specified by:
fireRequestDestroyEvent
in interfaceContext
- Parameters:
request
- The request object that will be passed to the listener- Returns:
true
if the listeners fire successfully, elsefalse
-
addPostConstructMethod
public void addPostConstructMethod(java.lang.String clazz, java.lang.String method)
Description copied from interface:Context
Add a post construct method definition for the given class, if there is an existing definition for the specified class - IllegalArgumentException will be thrown.- Specified by:
addPostConstructMethod
in interfaceContext
- Parameters:
clazz
- Fully qualified class namemethod
- Post construct method name
-
removePostConstructMethod
public void removePostConstructMethod(java.lang.String clazz)
Description copied from interface:Context
Removes the post construct method definition for the given class, if it exists; otherwise, no action is taken.- Specified by:
removePostConstructMethod
in interfaceContext
- Parameters:
clazz
- Fully qualified class name
-
addPreDestroyMethod
public void addPreDestroyMethod(java.lang.String clazz, java.lang.String method)
Description copied from interface:Context
Add a pre destroy method definition for the given class, if there is an existing definition for the specified class - IllegalArgumentException will be thrown.- Specified by:
addPreDestroyMethod
in interfaceContext
- Parameters:
clazz
- Fully qualified class namemethod
- Post construct method name
-
removePreDestroyMethod
public void removePreDestroyMethod(java.lang.String clazz)
Description copied from interface:Context
Removes the pre destroy method definition for the given class, if it exists; otherwise, no action is taken.- Specified by:
removePreDestroyMethod
in interfaceContext
- Parameters:
clazz
- Fully qualified class name
-
findPostConstructMethod
public java.lang.String findPostConstructMethod(java.lang.String clazz)
Description copied from interface:Context
Returns the method name that is specified as post construct method for the given class, if it exists; otherwiseNULL
will be returned.- Specified by:
findPostConstructMethod
in interfaceContext
- Parameters:
clazz
- Fully qualified class name- Returns:
- the method name that is specified as post construct method for
the given class, if it exists; otherwise
NULL
will be returned.
-
findPreDestroyMethod
public java.lang.String findPreDestroyMethod(java.lang.String clazz)
Description copied from interface:Context
Returns the method name that is specified as pre destroy method for the given class, if it exists; otherwiseNULL
will be returned.- Specified by:
findPreDestroyMethod
in interfaceContext
- Parameters:
clazz
- Fully qualified class name- Returns:
- the method name that is specified as pre destroy method for the
given class, if it exists; otherwise
NULL
will be returned.
-
findPostConstructMethods
public java.util.Map<java.lang.String,java.lang.String> findPostConstructMethods()
Description copied from interface:Context
Returns a map with keys - fully qualified class names of the classes that have post construct methods and the values are the corresponding method names. If there are no such classes an empty map will be returned.- Specified by:
findPostConstructMethods
in interfaceContext
- Returns:
- a map with keys - fully qualified class names of the classes that have post construct methods and the values are the corresponding method names.
-
findPreDestroyMethods
public java.util.Map<java.lang.String,java.lang.String> findPreDestroyMethods()
Description copied from interface:Context
Returns a map with keys - fully qualified class names of the classes that have pre destroy methods and the values are the corresponding method names. If there are no such classes an empty map will be returned.- Specified by:
findPreDestroyMethods
in interfaceContext
- Returns:
- a map with keys - fully qualified class names of the classes that have pre destroy methods and the values are the corresponding method names.
-
postWorkDirectory
protected void postWorkDirectory()
Set the appropriate context attribute for our work directory.
-
getObjectNameKeyProperties
protected java.lang.String getObjectNameKeyProperties()
Description copied from class:LifecycleMBeanBase
Allow sub-classes to specify the key properties component of theObjectName
that will be used to register this component.- Specified by:
getObjectNameKeyProperties
in classLifecycleMBeanBase
- Returns:
- The string representation of the key properties component of the
desired
ObjectName
-
initInternal
protected void initInternal() throws LifecycleException
Description copied from class:LifecycleMBeanBase
Sub-classes wishing to perform additional initialization should override this method, ensuring that super.initInternal() is the first call in the overriding method.- Overrides:
initInternal
in classContainerBase
- Throws:
LifecycleException
- If the initialisation fails
-
removeNotificationListener
public void removeNotificationListener(javax.management.NotificationListener listener, javax.management.NotificationFilter filter, java.lang.Object object) throws javax.management.ListenerNotFoundException
Remove a JMX notificationListener- Specified by:
removeNotificationListener
in interfacejavax.management.NotificationEmitter
- Throws:
javax.management.ListenerNotFoundException
- See Also:
NotificationEmitter.removeNotificationListener(javax.management.NotificationListener, javax.management.NotificationFilter, java.lang.Object)
-
getNotificationInfo
public javax.management.MBeanNotificationInfo[] getNotificationInfo()
Get JMX Broadcaster Info- Specified by:
getNotificationInfo
in interfacejavax.management.NotificationBroadcaster
- See Also:
NotificationBroadcaster.getNotificationInfo()
-
addNotificationListener
public void addNotificationListener(javax.management.NotificationListener listener, javax.management.NotificationFilter filter, java.lang.Object object) throws java.lang.IllegalArgumentException
Add a JMX NotificationListener- Specified by:
addNotificationListener
in interfacejavax.management.NotificationBroadcaster
- Throws:
java.lang.IllegalArgumentException
- See Also:
NotificationBroadcaster.addNotificationListener(javax.management.NotificationListener, javax.management.NotificationFilter, java.lang.Object)
-
removeNotificationListener
public void removeNotificationListener(javax.management.NotificationListener listener) throws javax.management.ListenerNotFoundException
Remove a JMX-NotificationListener- Specified by:
removeNotificationListener
in interfacejavax.management.NotificationBroadcaster
- Throws:
javax.management.ListenerNotFoundException
- See Also:
NotificationBroadcaster.removeNotificationListener(javax.management.NotificationListener)
-
getWelcomeFiles
public java.lang.String[] getWelcomeFiles()
- Returns:
- the naming resources associated with this web application.
-
getXmlNamespaceAware
public boolean getXmlNamespaceAware()
Description copied from interface:Context
Will the parsing of web.xml and web-fragment.xml files for this Context be performed by a namespace aware parser?- Specified by:
getXmlNamespaceAware
in interfaceContext
- Returns:
- true if namespace awareness is enabled.
-
setXmlNamespaceAware
public void setXmlNamespaceAware(boolean webXmlNamespaceAware)
Description copied from interface:Context
Controls whether the parsing of web.xml and web-fragment.xml files for this Context will be performed by a namespace aware parser.- Specified by:
setXmlNamespaceAware
in interfaceContext
- Parameters:
webXmlNamespaceAware
- true to enable namespace awareness
-
setXmlValidation
public void setXmlValidation(boolean webXmlValidation)
Description copied from interface:Context
Controls whether the parsing of web.xml and web-fragment.xml files for this Context will be performed by a validating parser.- Specified by:
setXmlValidation
in interfaceContext
- Parameters:
webXmlValidation
- true to enable xml validation
-
getXmlValidation
public boolean getXmlValidation()
Description copied from interface:Context
Will the parsing of web.xml and web-fragment.xml files for this Context be performed by a validating parser?- Specified by:
getXmlValidation
in interfaceContext
- Returns:
- true if validation is enabled.
-
setXmlBlockExternal
public void setXmlBlockExternal(boolean xmlBlockExternal)
Description copied from interface:Context
Controls whether the parsing of web.xml, web-fragment.xml, *.tld, *.jspx, *.tagx and tagplugin.xml files for this Context will block the use of external entities.- Specified by:
setXmlBlockExternal
in interfaceContext
- Parameters:
xmlBlockExternal
- true to block external entities
-
getXmlBlockExternal
public boolean getXmlBlockExternal()
Description copied from interface:Context
Will the parsing of web.xml, web-fragment.xml, *.tld, *.jspx, *.tagx and tagplugin.xml files for this Context block the use of external entities?- Specified by:
getXmlBlockExternal
in interfaceContext
- Returns:
- true if access to external entities is blocked
-
setTldValidation
public void setTldValidation(boolean tldValidation)
Description copied from interface:Context
Controls whether the parsing of *.tld files for this Context will be performed by a validating parser.- Specified by:
setTldValidation
in interfaceContext
- Parameters:
tldValidation
- true to enable xml validation
-
getTldValidation
public boolean getTldValidation()
Description copied from interface:Context
Will the parsing of *.tld files for this Context be performed by a validating parser?- Specified by:
getTldValidation
in interfaceContext
- Returns:
- true if validation is enabled.
-
getServer
public java.lang.String getServer()
-
setServer
public java.lang.String setServer(java.lang.String server)
-
getJavaVMs
@Deprecated public java.lang.String[] getJavaVMs()
Deprecated.Unused. Will be removed in Tomcat 10.1.Unused.- Returns:
- The current array.
-
setJavaVMs
@Deprecated public java.lang.String[] setJavaVMs(java.lang.String[] javaVMs)
Deprecated.Unused. Will be removed in Tomcat 10.1.Unused.- Parameters:
javaVMs
- The new value for the array.- Returns:
- The new value for the array.
-
getStartTime
public long getStartTime()
Gets the time this context was started.- Returns:
- Time (in milliseconds since January 1, 1970, 00:00:00) when this context was started
-
-