Class ContextConfig
java.lang.Object
org.apache.catalina.startup.ContextConfig
- All Implemented Interfaces:
LifecycleListener
Startup event listener for a Context that configures the properties of that Context, and the associated
defined servlets.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceInterface for loading context XML configuration into a Context.protected static classCache entry for the default web.xml fragment associated with a Host.protected static classCache entry for a Java class used during annotation scanning. -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected static final PropertiesThe set of Authenticators that we know how to configure.protected ContextThe Context we are associated with.protected Map<String, Authenticator> Custom mappings of login methods to authenticatorsprotected StringThe default web application's deployment descriptor location.protected static longDeployment count.protected static final LoginConfigDummy login configuration used when no login config is defined but an authenticator is needed to support programmatic login.protected booleanFlag that indicates if at least oneHandlesTypesentry is present that represents an annotation.protected booleanFlag that indicates if at least oneHandlesTypesentry is present that represents a non-annotation.protected static final Map<Host, ContextConfig.DefaultWebXmlCacheEntry> Cache of default web.xml fragments per Hostprotected final Map<ServletContainerInitializer, Set<Class<?>>> Map of ServletContainerInitializer to classes they expressed interest in.protected booleanTrack any fatal errors during startup configuration processing.protected StringOriginal docBase.protected static final StringManagerThe string resources for this package.protected final Map<Class<?>, Set<ServletContainerInitializer>> Map of Types to ServletContainerInitializer that are interested in those types. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidHandles anti-locking by copying the docBase to a temporary location to prevent file locking issues on Windows.protected voidProcess the application classes annotations, if it exists.protected voidSet up an Authenticator automatically if required, and one has not already been configured.protected voidProcess a "before start" event for this Context.protected voidcheckHandlesTypes(JavaClass javaClass, Map<String, ContextConfig.JavaClassCacheEntry> javaClassCache) For classes packaged with the web application, the class and each super class needs to be checked for a match withHandlesTypesor for an annotation that matchesHandlesTypes.protected voidProcess a "contextConfig" event for this Context.protected voidProcess a "stop" event for this Context.protected voidcontextConfig(Digester digester) Process the default configuration file, if it exists.protected DigesterCreate (if necessary) and return a Digester configured to process the context configuration descriptor for an application.protected WebXmlCreates a new WebXml instance.protected voiddestroy()Process a "destroy" event for this Context.protected voidAdjust docBase.protected voidgenerateClassFooter(Digester digester) Generates the footer of the Java class for context XML code generation.protected voidgenerateClassHeader(Digester digester, String packageName, String resourceName) Generates the header of the Java class for context XML code generation.Returns the configuration base path for the Host that contains this Context.protected InputSourceIdentify the application web.xml to be used and obtain an input source for it.protected FilegetContextXmlJavaSource(String contextXmlPackageName, String contextXmlSimpleClassName) Returns the Java source file path for the given context XML class.protected static StringgetContextXmlPackageName(String generatedCodePackage, Container container) Builds the package name for context XML generated code based on the container hierarchy.Obtain the location of the default deployment descriptor.protected booleanReturns whether code generation is enabled for this context.protected FileReturns the location where generated code is stored.protected StringReturns the package name for generated code.protected InputSourceIdentify the default web.xml to be used and obtain an input source for it.protected FileReturns the configuration base directory for the Host that contains this Context.protected InputSourceIdentify the host web.xml to be used and obtain an input source for it.protected booleanReturns whether the use of generated code is enabled for this context.protected InputSourcegetWebXmlSource(String filename, boolean global) Utility method to create an input source from the specified XML file.protected voidinit()Process an "init" event for this Context.voidlifecycleEvent(LifecycleEvent event) Process events for an associated Context.protected voidprocessAnnotations(Set<WebXml> fragments, boolean handlesTypesOnly, Map<String, ContextConfig.JavaClassCacheEntry> javaClassCache) Processes annotations for the given set of web fragments.protected voidprocessAnnotationsFile(File file, WebXml fragment, boolean handlesTypesOnly, Map<String, ContextConfig.JavaClassCacheEntry> javaClassCache) Processes annotations for a file or directory, recursing into subdirectories.protected voidprocessAnnotationsInParallel(Set<WebXml> fragments, boolean handlesTypesOnly, Map<String, ContextConfig.JavaClassCacheEntry> javaClassCache) Parallelized version of processAnnotationsInParallel().protected voidprocessAnnotationsJar(URL url, WebXml fragment, boolean handlesTypesOnly, Map<String, ContextConfig.JavaClassCacheEntry> javaClassCache) Processes annotations for all .class files within a JAR.protected voidprocessAnnotationsStream(InputStream is, WebXml fragment, boolean handlesTypesOnly, Map<String, ContextConfig.JavaClassCacheEntry> javaClassCache) Processes annotations from a class file input stream.protected String[]Processes an element value that represents a string array from an annotation.protected voidprocessAnnotationsUrl(URL url, WebXml fragment, boolean handlesTypesOnly, Map<String, ContextConfig.JavaClassCacheEntry> javaClassCache) Dispatches annotation processing based on the URL protocol.protected voidprocessAnnotationsWebResource(WebResource webResource, WebXml fragment, boolean handlesTypesOnly, Map<String, ContextConfig.JavaClassCacheEntry> javaClassCache) Processes annotations for a web resource, recursing into directories.protected voidprocessAnnotationWebFilter(String className, AnnotationEntry ae, WebXml fragment) Process filter annotation and merge with existing oneProcesses init parameters from an annotation element value.protected voidprocessAnnotationWebServlet(String className, AnnotationEntry ae, WebXml fragment) Processes a @WebServlet annotation and merges it into the web fragment.protected voidprocessClass(WebXml fragment, JavaClass clazz) Processes servlet annotations from a parsed Java class.protected voidprocessClasses(WebXml webXml, Set<WebXml> orderedFragments) Processes /WEB-INF/classes and JARs for annotations and @HandlesTypes matches.protected voidprocessContextConfig(Digester digester, URL contextXml, InputStream stream) Process a context.xml.processJarsForWebFragments(WebXml application, WebXmlParser webXmlParser) Scan /WEB-INF/lib for JARs and for each one found add it and any /META-INF/web-fragment.xml to the resulting Map. web-fragment.xml files will be parsed before being added to the map.protected voidprocessResourceJARs(Set<WebXml> fragments) Scan JARs that contain web-fragment.xml files that will be used to configure this application to see if they also contain static resources.protected voidScan JARs for ServletContainerInitializer implementations.voidsetCustomAuthenticators(Map<String, Authenticator> customAuthenticators) Sets custom mappings of login methods to authenticators.voidsetDefaultWebXml(String path) Set the location of the default deployment descriptor.protected voidValidate the usage of security role names in the web application deployment descriptor.protected voidScan the web.xml files that apply to the web application and merge them using the rules defined in the spec.
-
Field Details
-
sm
The string resources for this package. -
DUMMY_LOGIN_CONFIG
Dummy login configuration used when no login config is defined but an authenticator is needed to support programmatic login. -
authenticators
The set of Authenticators that we know how to configure. The key is the name of the implemented authentication method, and the value is the fully qualified Java class name of the corresponding Valve. -
deploymentCount
protected static long deploymentCountDeployment count. -
hostWebXmlCache
Cache of default web.xml fragments per Host -
customAuthenticators
Custom mappings of login methods to authenticators -
context
The Context we are associated with. -
defaultWebXml
The default web application's deployment descriptor location. -
ok
protected boolean okTrack any fatal errors during startup configuration processing. -
originalDocBase
Original docBase. -
initializerClassMap
Map of ServletContainerInitializer to classes they expressed interest in. -
typeInitializerMap
Map of Types to ServletContainerInitializer that are interested in those types. -
handlesTypesAnnotations
protected boolean handlesTypesAnnotationsFlag that indicates if at least oneHandlesTypesentry is present that represents an annotation. -
handlesTypesNonAnnotations
protected boolean handlesTypesNonAnnotationsFlag that indicates if at least oneHandlesTypesentry is present that represents a non-annotation.
-
-
Constructor Details
-
ContextConfig
public ContextConfig()Constructs a new ContextConfig instance.
-
-
Method Details
-
getDefaultWebXml
Obtain the location of the default deployment descriptor.- Returns:
- The path to the default web.xml. If not absolute, it is relative to CATALINA_BASE.
-
setDefaultWebXml
Set the location of the default deployment descriptor.- Parameters:
path- The path to the default web.xml. If not absolute, it is relative to CATALINA_BASE.
-
setCustomAuthenticators
Sets custom mappings of login methods to authenticators.- Parameters:
customAuthenticators- Custom mappings of login methods to authenticators
-
lifecycleEvent
Process events for an associated Context.- Specified by:
lifecycleEventin interfaceLifecycleListener- Parameters:
event- The lifecycle event that has occurred
-
applicationAnnotationsConfig
protected void applicationAnnotationsConfig()Process the application classes annotations, if it exists. -
authenticatorConfig
protected void authenticatorConfig()Set up an Authenticator automatically if required, and one has not already been configured. -
createContextDigester
Create (if necessary) and return a Digester configured to process the context configuration descriptor for an application.- Returns:
- the digester for context.xml files
-
getGenerateCode
protected boolean getGenerateCode()Returns whether code generation is enabled for this context.- Returns:
trueif code generation is enabled
-
getUseGeneratedCode
protected boolean getUseGeneratedCode()Returns whether the use of generated code is enabled for this context.- Returns:
trueif the use of generated code is enabled
-
getGeneratedCodeLocation
Returns the location where generated code is stored.- Returns:
- the location where generated code is stored
-
getGeneratedCodePackage
Returns the package name for generated code.- Returns:
- the package name for generated code
-
getContextXmlPackageName
Builds the package name for context XML generated code based on the container hierarchy.- Parameters:
generatedCodePackage- the base package name for generated codecontainer- the container from which to derive the package name- Returns:
- the fully qualified package name for the context XML generated code
-
getContextXmlJavaSource
protected File getContextXmlJavaSource(String contextXmlPackageName, String contextXmlSimpleClassName) Returns the Java source file path for the given context XML class.- Parameters:
contextXmlPackageName- the package name for the context XML classcontextXmlSimpleClassName- the simple class name- Returns:
- the source file path, or
nullif the directory cannot be created
-
generateClassHeader
Generates the header of the Java class for context XML code generation.- Parameters:
digester- the digester instancepackageName- the package name for the generated classresourceName- the simple class name
-
contextConfig
Process the default configuration file, if it exists.- Parameters:
digester- The digester that will be used for XML parsing
-
processContextConfig
Process a context.xml.- Parameters:
digester- The digester that will be used for XML parsingcontextXml- The URL to the context.xml configurationstream- The XML resource stream
-
fixDocBase
Adjust docBase.- Throws:
IOException- cannot access the context base path
-
antiLocking
protected void antiLocking()Handles anti-locking by copying the docBase to a temporary location to prevent file locking issues on Windows. -
init
protected void init()Process an "init" event for this Context. -
beforeStart
protected void beforeStart()Process a "before start" event for this Context. -
configureStart
protected void configureStart()Process a "contextConfig" event for this Context. -
configureStop
protected void configureStop()Process a "stop" event for this Context. -
destroy
protected void destroy()Process a "destroy" event for this Context. -
validateSecurityRoles
protected void validateSecurityRoles()Validate the usage of security role names in the web application deployment descriptor. If any problems are found, issue warning messages (for backwards compatibility) and add the missing roles. (To make these problems fatal instead, simply set theokinstance variable tofalseas well). -
getHostConfigBase
Returns the configuration base directory for the Host that contains this Context.- Returns:
- the configuration base directory, or
nullif the parent is not a Host
-
webConfig
protected void webConfig()Scan the web.xml files that apply to the web application and merge them using the rules defined in the spec. For the global web.xml files, where there is duplicate configuration, the most specific level wins. ie an application's web.xml takes precedence over the host level or global web.xml file. -
processClasses
-
createWebXml
-
processServletContainerInitializers
protected void processServletContainerInitializers()Scan JARs for ServletContainerInitializer implementations. -
processResourceJARs
Scan JARs that contain web-fragment.xml files that will be used to configure this application to see if they also contain static resources. If static resources are found, add them to the context. Resources are added in web-fragment.xml priority order.- Parameters:
fragments- The set of fragments that will be scanned for static resources
-
getGlobalWebXmlSource
Identify the default web.xml to be used and obtain an input source for it.- Returns:
- an input source to the default web.xml
-
getHostWebXmlSource
Identify the host web.xml to be used and obtain an input source for it.- Returns:
- an input source to the default per host web.xml
-
getContextWebXmlSource
Identify the application web.xml to be used and obtain an input source for it.- Returns:
- an input source to the context web.xml
-
getConfigBasePath
Returns the configuration base path for the Host that contains this Context.- Returns:
- the configuration base path, or
nullif the parent is not a Host
-
getWebXmlSource
Utility method to create an input source from the specified XML file.- Parameters:
filename- Name of the file (possibly with one or more leading path segments) to readglobal- true if processing a shared resource, false if processing a host based resource- Returns:
- the input source
-
processJarsForWebFragments
protected Map<String,WebXml> processJarsForWebFragments(WebXml application, WebXmlParser webXmlParser) Scan /WEB-INF/lib for JARs and for each one found add it and any /META-INF/web-fragment.xml to the resulting Map. web-fragment.xml files will be parsed before being added to the map. Every JAR will be added andnullwill be used if no web-fragment.xml was found. Any JARs known not contain fragments will be skipped.- Parameters:
application- The main web.xml metadatawebXmlParser- The parser to use to process the web.xml file- Returns:
- A map of JAR name to processed web fragment (if any)
-
processAnnotations
protected void processAnnotations(Set<WebXml> fragments, boolean handlesTypesOnly, Map<String, ContextConfig.JavaClassCacheEntry> javaClassCache) Processes annotations for the given set of web fragments.- Parameters:
fragments- the web fragments to scanhandlesTypesOnly- whether to only process @HandlesTypes matchesjavaClassCache- the class cache for tracking processed classes
-
processAnnotationsInParallel
protected void processAnnotationsInParallel(Set<WebXml> fragments, boolean handlesTypesOnly, Map<String, ContextConfig.JavaClassCacheEntry> javaClassCache) Parallelized version of processAnnotationsInParallel(). Constructs tasks, submits them as they're created, then waits for completion.- Parameters:
fragments- Set of parallelizable scanshandlesTypesOnly- Important parameter for the underlying scanjavaClassCache- The class cache
-
processAnnotationsWebResource
protected void processAnnotationsWebResource(WebResource webResource, WebXml fragment, boolean handlesTypesOnly, Map<String, ContextConfig.JavaClassCacheEntry> javaClassCache) Processes annotations for a web resource, recursing into directories.- Parameters:
webResource- the web resource to processfragment- the web fragment to merge annotations intohandlesTypesOnly- whether to only process @HandlesTypes matchesjavaClassCache- the class cache for tracking processed classes
-
processAnnotationsUrl
protected void processAnnotationsUrl(URL url, WebXml fragment, boolean handlesTypesOnly, Map<String, ContextConfig.JavaClassCacheEntry> javaClassCache) Dispatches annotation processing based on the URL protocol.- Parameters:
url- the URL to processfragment- the web fragment to merge annotations intohandlesTypesOnly- whether to only process @HandlesTypes matchesjavaClassCache- the class cache for tracking processed classes
-
processAnnotationsJar
protected void processAnnotationsJar(URL url, WebXml fragment, boolean handlesTypesOnly, Map<String, ContextConfig.JavaClassCacheEntry> javaClassCache) Processes annotations for all .class files within a JAR.- Parameters:
url- the URL of the JARfragment- the web fragment to merge annotations intohandlesTypesOnly- whether to only process @HandlesTypes matchesjavaClassCache- the class cache for tracking processed classes
-
processAnnotationsFile
protected void processAnnotationsFile(File file, WebXml fragment, boolean handlesTypesOnly, Map<String, ContextConfig.JavaClassCacheEntry> javaClassCache) Processes annotations for a file or directory, recursing into subdirectories.- Parameters:
file- the file or directory to processfragment- the web fragment to merge annotations intohandlesTypesOnly- whether to only process @HandlesTypes matchesjavaClassCache- the class cache for tracking processed classes
-
processAnnotationsStream
protected void processAnnotationsStream(InputStream is, WebXml fragment, boolean handlesTypesOnly, Map<String, ContextConfig.JavaClassCacheEntry> javaClassCache) throws ClassFormatException, IOException Processes annotations from a class file input stream.- Parameters:
is- the input stream for the class filefragment- the web fragment to merge annotations intohandlesTypesOnly- whether to only process @HandlesTypes matchesjavaClassCache- the class cache for tracking processed classes- Throws:
ClassFormatException- if the class file is malformedIOException- if an I/O error occurs
-
processClass
-
checkHandlesTypes
protected void checkHandlesTypes(JavaClass javaClass, Map<String, ContextConfig.JavaClassCacheEntry> javaClassCache) For classes packaged with the web application, the class and each super class needs to be checked for a match withHandlesTypesor for an annotation that matchesHandlesTypes.- Parameters:
javaClass- the class to checkjavaClassCache- a class cache
-
processAnnotationWebServlet
Processes a @WebServlet annotation and merges it into the web fragment.- Parameters:
className- the class name containing the annotationae- the annotation entryfragment- the web fragment to merge the servlet definition into
-
processAnnotationWebFilter
Process filter annotation and merge with existing one- Parameters:
className- The filter class nameae- The filter annotationfragment- The corresponding fragment
-
processAnnotationsStringArray
Processes an element value that represents a string array from an annotation.- Parameters:
ev- the element value to process- Returns:
- the resulting string array
-
processAnnotationWebInitParams
Processes init parameters from an annotation element value.- Parameters:
ev- the element value containing init parameters- Returns:
- a map of init parameter names to values
-