Package | Description |
---|---|
org.springframework.boot.autoconfigure.h2 |
Auto-configuration for H2's Console.
|
org.springframework.boot.autoconfigure.jersey |
Auto-configuration for Jersey.
|
org.springframework.boot.autoconfigure.web.servlet |
Auto-configuration for servlet web servers and Spring MVC.
|
org.springframework.boot.autoconfigure.webservices |
Auto-configuration for Spring Web Services.
|
org.springframework.boot.web.servlet |
Classes and utilities designed to work with the `javax.servlet` specification.
|
Modifier and Type | Method and Description |
---|---|
ServletRegistrationBean<org.h2.server.web.WebServlet> |
H2ConsoleAutoConfiguration.h2Console(H2ConsoleProperties properties,
ObjectProvider<DataSource> dataSource) |
Modifier and Type | Method and Description |
---|---|
ServletRegistrationBean<org.glassfish.jersey.servlet.ServletContainer> |
JerseyAutoConfiguration.jerseyServletRegistration(JerseyApplicationPath applicationPath) |
Modifier and Type | Class and Description |
---|---|
class |
DispatcherServletRegistrationBean
ServletRegistrationBean for the auto-configured DispatcherServlet . |
Modifier and Type | Method and Description |
---|---|
ServletRegistrationBean<org.springframework.ws.transport.http.MessageDispatcherServlet> |
WebServicesAutoConfiguration.messageDispatcherServlet(ApplicationContext applicationContext,
WebServicesProperties properties) |
Modifier and Type | Method and Description |
---|---|
Collection<ServletRegistrationBean<?>> |
AbstractFilterRegistrationBean.getServletRegistrationBeans()
Return a mutable collection of the
ServletRegistrationBean that the filter
will be registered against. |
Modifier and Type | Method and Description |
---|---|
void |
AbstractFilterRegistrationBean.addServletRegistrationBeans(ServletRegistrationBean<?>... servletRegistrationBeans)
Add
ServletRegistrationBean s for the filter. |
Modifier and Type | Method and Description |
---|---|
void |
AbstractFilterRegistrationBean.setServletRegistrationBeans(Collection<? extends ServletRegistrationBean<?>> servletRegistrationBeans)
Set
ServletRegistrationBean s that the filter will be registered against. |
Constructor and Description |
---|
DelegatingFilterProxyRegistrationBean(String targetBeanName,
ServletRegistrationBean<?>... servletRegistrationBeans)
Create a new
DelegatingFilterProxyRegistrationBean instance to be
registered with the specified ServletRegistrationBean s. |
FilterRegistrationBean(T filter,
ServletRegistrationBean<?>... servletRegistrationBeans)
Create a new
FilterRegistrationBean instance to be registered with the
specified ServletRegistrationBean s. |