public class JettyEmbeddedServletContainerFactory extends AbstractEmbeddedServletContainerFactory implements ResourceLoaderAware
EmbeddedServletContainerFactory
that can be used to create
JettyEmbeddedServletContainer
s. Can be initialized using Spring's
ServletContextInitializer
s or Jetty Configuration
s.
Unless explicitly configured otherwise this factory will created containers that listens for HTTP requests on port 8080.
AbstractConfigurableEmbeddedServletContainer.setPort(int)
,
setConfigurations(Collection)
,
JettyEmbeddedServletContainer
logger
Constructor and Description |
---|
JettyEmbeddedServletContainerFactory()
Create a new
JettyEmbeddedServletContainerFactory instance. |
JettyEmbeddedServletContainerFactory(int port)
Create a new
JettyEmbeddedServletContainerFactory that listens for requests
using the specified port. |
JettyEmbeddedServletContainerFactory(String contextPath,
int port)
Create a new
JettyEmbeddedServletContainerFactory with the specified
context path and port. |
Modifier and Type | Method and Description |
---|---|
void |
addConfigurations(Configuration... configurations)
Add
Configuration s that will be applied to the WebAppContext before
the server is started. |
void |
addServerCustomizers(JettyServerCustomizer... customizers)
Add
JettyServerCustomizer s that will be applied to the Server
before it is started. |
Collection<Configuration> |
getConfigurations()
Returns a mutable collection of Jetty
Configuration s that will be applied
to the WebAppContext before the server is created. |
EmbeddedServletContainer |
getEmbeddedServletContainer(ServletContextInitializer... initializers)
Gets a new fully configured but paused
EmbeddedServletContainer instance. |
protected JettyEmbeddedServletContainer |
getJettyEmbeddedServletContainer(Server server)
Factory method called to create the
JettyEmbeddedServletContainer . |
Collection<JettyServerCustomizer> |
getServerCustomizers()
Returns a mutable collection of Jetty
Configuration s that will be applied
to the WebAppContext before the server is created. |
protected Configuration |
getServletContextInitializerConfiguration(WebAppContext webAppContext,
ServletContextInitializer... initializers)
Return a Jetty
Configuration that will invoke the specified
ServletContextInitializer s. |
protected Configuration[] |
getWebAppContextConfigurations(WebAppContext webAppContext,
ServletContextInitializer... initializers)
Return the Jetty
Configuration s that should be applied to the server. |
protected void |
postProcessWebAppContext(WebAppContext webAppContext)
Post process the Jetty
WebAppContext before it used with the Jetty Server. |
void |
setConfigurations(Collection<? extends Configuration> configurations)
Sets Jetty
Configuration s that will be applied to the WebAppContext
before the server is created. |
void |
setResourceLoader(ResourceLoader resourceLoader) |
void |
setServerCustomizers(Collection<? extends JettyServerCustomizer> customizers)
Sets
JettyServerCustomizer s that will be applied to the Server
before it is started. |
getValidDocumentRoot
addErrorPages, addInitializers, getAddress, getContextPath, getDocumentRoot, getErrorPages, getJspServletClassName, getMimeMappings, getPort, getSessionTimeout, isRegisterDefaultServlet, isRegisterJspServlet, mergeInitializers, setAddress, setContextPath, setDocumentRoot, setErrorPages, setInitializers, setJspServletClassName, setMimeMappings, setPort, setRegisterDefaultServlet, setRegisterJspServlet, setSessionTimeout, setSessionTimeout
public JettyEmbeddedServletContainerFactory()
JettyEmbeddedServletContainerFactory
instance.public JettyEmbeddedServletContainerFactory(int port)
JettyEmbeddedServletContainerFactory
that listens for requests
using the specified port.port
- the port to listen onpublic JettyEmbeddedServletContainerFactory(String contextPath, int port)
JettyEmbeddedServletContainerFactory
with the specified
context path and port.contextPath
- root the context pathport
- the port to listen onpublic EmbeddedServletContainer getEmbeddedServletContainer(ServletContextInitializer... initializers)
EmbeddedServletContainerFactory
EmbeddedServletContainer
instance.
Clients should not be able to connect to the returned server until
EmbeddedServletContainer.start()
is called (which happens when the
ApplicationContext
has been fully refreshed).getEmbeddedServletContainer
in interface EmbeddedServletContainerFactory
initializers
- ServletContextInitializer
s that should be applied as
the container startsEmbeddedServletContainer
EmbeddedServletContainer.stop()
protected Configuration[] getWebAppContextConfigurations(WebAppContext webAppContext, ServletContextInitializer... initializers)
Configuration
s that should be applied to the server.webAppContext
- the Jetty WebAppContext
initializers
- the ServletContextInitializer
s to applyprotected Configuration getServletContextInitializerConfiguration(WebAppContext webAppContext, ServletContextInitializer... initializers)
Configuration
that will invoke the specified
ServletContextInitializer
s. By default this method will return a
ServletContextInitializerConfiguration
.webAppContext
- the Jetty WebAppContext
initializers
- the ServletContextInitializer
s to applyConfiguration
instanceprotected void postProcessWebAppContext(WebAppContext webAppContext)
WebAppContext
before it used with the Jetty Server.
Subclasses can override this method to apply additional processing to the
WebAppContext
.webAppContext
- the Jetty WebAppContext
protected JettyEmbeddedServletContainer getJettyEmbeddedServletContainer(Server server)
JettyEmbeddedServletContainer
.
Subclasses can override this method to return a different
JettyEmbeddedServletContainer
or apply additional processing to the Jetty
server.server
- the Jetty server.JettyEmbeddedServletContainer
instancepublic void setResourceLoader(ResourceLoader resourceLoader)
setResourceLoader
in interface ResourceLoaderAware
public void setServerCustomizers(Collection<? extends JettyServerCustomizer> customizers)
JettyServerCustomizer
s that will be applied to the Server
before it is started. Calling this method will replace any existing configurations.customizers
- the Jetty customizers to applypublic Collection<JettyServerCustomizer> getServerCustomizers()
Configuration
s that will be applied
to the WebAppContext
before the server is created.Configuration
spublic void addServerCustomizers(JettyServerCustomizer... customizers)
JettyServerCustomizer
s that will be applied to the Server
before it is started.customizers
- the customizers to addpublic void setConfigurations(Collection<? extends Configuration> configurations)
Configuration
s that will be applied to the WebAppContext
before the server is created. Calling this method will replace any existing
configurations.configurations
- the Jetty configurations to applypublic Collection<Configuration> getConfigurations()
Configuration
s that will be applied
to the WebAppContext
before the server is created.Configuration
spublic void addConfigurations(Configuration... configurations)
Configuration
s that will be applied to the WebAppContext
before
the server is started.configurations
- the configurations to addCopyright © 2014 Pivotal Software, Inc.. All rights reserved.