Interface ServletWebServerFactory
- All Superinterfaces:
WebServerFactory
- All Known Subinterfaces:
ConfigurableServletWebServerFactory
- All Known Implementing Classes:
AbstractServletWebServerFactory
,JettyServletWebServerFactory
,TomcatServletWebServerFactory
,UndertowServletWebServerFactory
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Factory interface that can be used to create a
WebServer
.- Since:
- 2.0.0
- Author:
- Phillip Webb
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongetWebServer
(ServletContextInitializer... initializers) Gets a new fully configured but pausedWebServer
instance.
-
Method Details
-
getWebServer
Gets a new fully configured but pausedWebServer
instance. Clients should not be able to connect to the returned server untilWebServer.start()
is called (which happens when theApplicationContext
has been fully refreshed).- Parameters:
initializers
-ServletContextInitializer
s that should be applied as the server starts- Returns:
- a fully configured and started
WebServer
- See Also:
-