Example usage for org.springframework.boot.web.servlet RegistrationBean subclass-usage

List of usage examples for org.springframework.boot.web.servlet RegistrationBean subclass-usage

Introduction

In this page you can find the example usage for org.springframework.boot.web.servlet RegistrationBean subclass-usage.

Usage

From source file org.springframework.boot.web.servlet.DynamicRegistrationBean.java

/**
 * Base class for Servlet 3.0+ {@link javax.servlet.Registration.Dynamic dynamic} based
 * registration beans.
 *
 * @param <D> the dynamic registration result
 * @author Phillip Webb

From source file org.springframework.boot.web.servlet.ServletListenerRegistrationBean.java

/**
 * A {@link ServletContextInitializer} to register {@link EventListener}s in a Servlet
 * 3.0+ container. Similar to the {@link ServletContext#addListener(EventListener)
 * registration} features provided by {@link ServletContext} but with a Spring Bean
 * friendly design.
 *

From source file org.springframework.boot.web.servlet.ServletRegistrationBean.java

/**
 * A {@link ServletContextInitializer} to register {@link Servlet}s in a Servlet 3.0+
 * container. Similar to the {@link ServletContext#addServlet(String, Servlet)
 * registration} features provided by {@link ServletContext} but with a Spring Bean
 * friendly design.
 * <p>

From source file org.springframework.boot.web.servlet.AbstractFilterRegistrationBean.java

/**
 * Abstract base {@link ServletContextInitializer} to register {@link Filter}s in a
 * Servlet 3.0+ container.
 *
 * @author Phillip Webb
 */