Uses of Class
org.springframework.boot.web.servlet.ServletRegistrationBean
Package
Description
Auto-configuration for H2's Console.
Auto-configuration for Jersey.
Auto-configuration for servlet web servers and Spring MVC.
Auto-configuration for Spring Web Services.
Classes and utilities designed to work with the
jakarta.servlet
specification.-
Uses of ServletRegistrationBean in org.springframework.boot.autoconfigure.h2
Modifier and TypeMethodDescriptionServletRegistrationBean<org.h2.server.web.JakartaWebServlet>
H2ConsoleAutoConfiguration.h2Console
(H2ConsoleProperties properties, ObjectProvider<DataSource> dataSource) -
Uses of ServletRegistrationBean in org.springframework.boot.autoconfigure.jersey
Modifier and TypeMethodDescriptionServletRegistrationBean<org.glassfish.jersey.servlet.ServletContainer>
JerseyAutoConfiguration.jerseyServletRegistration
(JerseyApplicationPath applicationPath) -
Uses of ServletRegistrationBean in org.springframework.boot.autoconfigure.web.servlet
Modifier and TypeClassDescriptionclass
ServletRegistrationBean
for the auto-configuredDispatcherServlet
. -
Uses of ServletRegistrationBean in org.springframework.boot.autoconfigure.webservices
Modifier and TypeMethodDescriptionServletRegistrationBean<org.springframework.ws.transport.http.MessageDispatcherServlet>
WebServicesAutoConfiguration.messageDispatcherServlet
(ApplicationContext applicationContext, WebServicesProperties properties) -
Uses of ServletRegistrationBean in org.springframework.boot.web.servlet
Modifier and TypeMethodDescriptionAbstractFilterRegistrationBean.getServletRegistrationBeans()
Return a mutable collection of theServletRegistrationBean
that the filter will be registered against.Modifier and TypeMethodDescriptionvoid
AbstractFilterRegistrationBean.addServletRegistrationBeans
(ServletRegistrationBean<?>... servletRegistrationBeans) AddServletRegistrationBean
s for the filter.Modifier and TypeMethodDescriptionvoid
AbstractFilterRegistrationBean.setServletRegistrationBeans
(Collection<? extends ServletRegistrationBean<?>> servletRegistrationBeans) SetServletRegistrationBean
s that the filter will be registered against.ModifierConstructorDescriptionDelegatingFilterProxyRegistrationBean
(String targetBeanName, ServletRegistrationBean<?>... servletRegistrationBeans) Create a newDelegatingFilterProxyRegistrationBean
instance to be registered with the specifiedServletRegistrationBean
s.FilterRegistrationBean
(T filter, ServletRegistrationBean<?>... servletRegistrationBeans) Create a newFilterRegistrationBean
instance to be registered with the specifiedServletRegistrationBean
s.