Interface ConfigurableTomcatWebServerFactory
- All Superinterfaces:
 ConfigurableWebServerFactory, ErrorPageRegistry, WebServerFactory
- All Known Implementing Classes:
 TomcatReactiveWebServerFactory, TomcatServletWebServerFactory, TomcatWebServerFactory
ConfigurableWebServerFactory for Tomcat-specific features.- Since:
 - 4.0.0
 - Author:
 - Brian Clozel
 - See Also:
 
- 
Method Summary
Modifier and TypeMethodDescriptionvoidaddConnectorCustomizers(TomcatConnectorCustomizer... tomcatConnectorCustomizers) AddTomcatConnectorCustomizers that should be added to the TomcatConnector.voidaddContextCustomizers(TomcatContextCustomizer... tomcatContextCustomizers) AddTomcatContextCustomizers that should be added to the TomcatContext.voidaddEngineValves(Valve... engineValves) voidaddProtocolHandlerCustomizers(TomcatProtocolHandlerCustomizer<?>... tomcatProtocolHandlerCustomizers) AddTomcatProtocolHandlerCustomizers that should be added to the TomcatConnector.voidsetBackgroundProcessorDelay(int delay) Sets the background processor delay in seconds.voidsetBaseDirectory(@Nullable File baseDirectory) Set the Tomcat base directory.voidsetDisableMBeanRegistry(boolean disableMBeanRegistry) Set whether the factory should disable Tomcat's MBean registry prior to creating the server.voidsetUriEncoding(Charset uriEncoding) Set the character encoding to use for URL decoding.voidsetUseApr(boolean useApr) Whether to use APR.Methods inherited from interface ConfigurableWebServerFactory
setAddress, setCompression, setErrorPages, setHttp2, setPort, setServerHeader, setShutdown, setSsl, setSslBundlesMethods inherited from interface ErrorPageRegistry
addErrorPages 
- 
Method Details
- 
setBaseDirectory
Set the Tomcat base directory. If not specified a temporary directory will be used.- Parameters:
 baseDirectory- the tomcat base directory
 - 
setBackgroundProcessorDelay
void setBackgroundProcessorDelay(int delay) Sets the background processor delay in seconds.- Parameters:
 delay- the delay in seconds
 - 
addEngineValves
 - 
addConnectorCustomizers
AddTomcatConnectorCustomizers that should be added to the TomcatConnector.- Parameters:
 tomcatConnectorCustomizers- the customizers to add
 - 
addContextCustomizers
AddTomcatContextCustomizers that should be added to the TomcatContext.- Parameters:
 tomcatContextCustomizers- the customizers to add
 - 
addProtocolHandlerCustomizers
void addProtocolHandlerCustomizers(TomcatProtocolHandlerCustomizer<?>... tomcatProtocolHandlerCustomizers) AddTomcatProtocolHandlerCustomizers that should be added to the TomcatConnector.- Parameters:
 tomcatProtocolHandlerCustomizers- the customizers to add
 - 
setUriEncoding
Set the character encoding to use for URL decoding. If not specified 'UTF-8' will be used.- Parameters:
 uriEncoding- the uri encoding to set
 - 
setUseApr
void setUseApr(boolean useApr) Whether to use APR.- Parameters:
 useApr- whether to use APR
 - 
setDisableMBeanRegistry
void setDisableMBeanRegistry(boolean disableMBeanRegistry) Set whether the factory should disable Tomcat's MBean registry prior to creating the server.- Parameters:
 disableMBeanRegistry- whether to disable the MBean registry
 
 -