public interface ConfigurableServletWebServerFactory extends ConfigurableWebServerFactory, ServletWebServerFactory
ServletWebServerFactory.ServletWebServerFactory, 
WebServerFactoryCustomizer| Modifier and Type | Method and Description | 
|---|---|
| void | addInitializers(ServletContextInitializer... initializers)Add  ServletContextInitializers to those that should be applied in addition
 toServletWebServerFactory.getWebServer(ServletContextInitializer...)parameters. | 
| void | setContextPath(String contextPath)Sets the context path for the web server. | 
| void | setDisplayName(String displayName)Sets the display name of the application deployed in the web server. | 
| void | setDocumentRoot(File documentRoot)Sets the document root directory which will be used by the web context to serve
 static files. | 
| void | setInitializers(List<? extends ServletContextInitializer> initializers)Sets  ServletContextInitializerthat should be applied in addition toServletWebServerFactory.getWebServer(ServletContextInitializer...)parameters. | 
| void | setInitParameters(Map<String,String> initParameters)Sets the init parameters that are applied to the container's
  ServletContext. | 
| void | setJsp(Jsp jsp)Sets the configuration that will be applied to the server's JSP servlet. | 
| void | setLocaleCharsetMappings(Map<Locale,Charset> localeCharsetMappings)Sets the Locale to Charset mappings. | 
| void | setMimeMappings(MimeMappings mimeMappings)Sets the mime-type mappings. | 
| void | setRegisterDefaultServlet(boolean registerDefaultServlet)Set if the DefaultServlet should be registered. | 
| void | setSession(Session session)Sets the configuration that will be applied to the container's HTTP session
 support. | 
setAddress, setCompression, setErrorPages, setHttp2, setPort, setServerHeader, setSsl, setSslStoreProvideraddErrorPagesgetWebServervoid setContextPath(String contextPath)
contextPath - the contextPath to setvoid setDisplayName(String displayName)
displayName - the displayName to setvoid setSession(Session session)
session - the session configurationvoid setRegisterDefaultServlet(boolean registerDefaultServlet)
true so that
 files from the document root will be served.registerDefaultServlet - if the default servlet should be registeredvoid setMimeMappings(MimeMappings mimeMappings)
mimeMappings - the mime type mappings (defaults to
 MimeMappings.DEFAULT)void setDocumentRoot(File documentRoot)
documentRoot - the document root or null if not requiredvoid setInitializers(List<? extends ServletContextInitializer> initializers)
ServletContextInitializer that should be applied in addition to
 ServletWebServerFactory.getWebServer(ServletContextInitializer...)
 parameters. This method will replace any previously set or added initializers.initializers - the initializers to setaddInitializers(org.springframework.boot.web.servlet.ServletContextInitializer...)void addInitializers(ServletContextInitializer... initializers)
ServletContextInitializers to those that should be applied in addition
 to ServletWebServerFactory.getWebServer(ServletContextInitializer...)
 parameters.initializers - the initializers to addsetInitializers(java.util.List<? extends org.springframework.boot.web.servlet.ServletContextInitializer>)void setJsp(Jsp jsp)
jsp - the JSP servlet configurationvoid setLocaleCharsetMappings(Map<Locale,Charset> localeCharsetMappings)
localeCharsetMappings - the Locale to Charset mappingsvoid setInitParameters(Map<String,String> initParameters)
ServletContext.initParameters - the init parametersCopyright © 2021 Pivotal Software, Inc.. All rights reserved.