Example usage for org.springframework.web.servlet DispatcherServlet subclass-usage

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

Introduction

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

Usage

From source file com.ebay.pulsar.metric.server.MetricDispatcherServlet.java

public class MetricDispatcherServlet extends DispatcherServlet {
    private static final long serialVersionUID = 7689614315500644056L;

    protected WebApplicationContext createWebApplicationContext(ApplicationContext parent) {
        Class<?> contextClass = getContextClass();
        if (this.logger.isDebugEnabled()) {

From source file com.enonic.cms.web.CmsDispatcherServlet.java

/**
 * This class implements a modification of the dispatcher servlet.
 */
public final class CmsDispatcherServlet extends DispatcherServlet {
    private final static List<HttpMethod> ALLOWED_HTTP_METHODS = Arrays.asList(HttpMethod.GET, HttpMethod.POST,
            HttpMethod.HEAD, HttpMethod.OPTIONS);

From source file com.griddynamics.banshun.web.Servlet.java

@SuppressWarnings("serial")
public class Servlet extends DispatcherServlet {
    public static final String springCtxAttrName = "springContextAttrName";

    public Servlet() {
        setContextAttribute(springCtxAttrName);

From source file org.opentravel.pubs.servlet.DispatcherServlet.java

/**
 * Extends the default Spring Web MVC dispatcher servlet to ignore the controller's view
 * if the HTTP response has been written directly by the controller.
 * 
 * @author S. Livezey
 */

From source file com.boundlessgeo.geoserver.AppDispatcher.java

/**
 * Custom dispatcher that routes "/app" requests to the static webapp.
 * <p>
 *  This class must be registered in web.xml.
 * </p>
 */

From source file com.googlecode.psiprobe.ProbeServlet.java

/**
 * Main dispatcher servlet. Spring default dispatcher servlet had to be
 * superceeded to handle "privileged" application context features. The actual
 * requirement is to capture passed Wrapper instance into ContainerWrapperBean.
 * Wrapper instance is our gateway to Tomcat.
 * 

From source file org.openmrs.web.StaticDispatcherServlet.java

/**
 * This class is only used to get access to the dispatcher servlet that handles static content. <br>
 * <br>
 * After creation, this object is saved to WebModuleUtil for later use. When Spring's root 
 * webApplicationContext is refreshed, this dispatcher servlet needs to be refreshed too.
 */

From source file net.testdriven.psiprobe.ProbeServlet.java

/**
 * Main dispatcher servlet. Spring default dispatcher servlet had to be
 * superceeded to handle "privileged" application context features. The actual
 * requirement is to capture passed Wrapper instance into ContainerWrapperBean.
 * Wrapper instance is our gateway to Tomcat.
 *

From source file org.osaf.cosmo.ui.DispatcherServlet.java

/**
 * Extends the Spring
 * {@link org.springframework.web.servlet.DispatcherServlet}
 * to provide Cosmo-specific behaviors.
 */
public class DispatcherServlet extends org.springframework.web.servlet.DispatcherServlet {

From source file com.nominanuda.springmvc.JettyChainableDispatcherServlet.java

public class JettyChainableDispatcherServlet extends DispatcherServlet {
    private static final ReflectionHelper reflect = new ReflectionHelper();
    private static final long serialVersionUID = -3687969916503048020L;
    private static final String UNHANDLED_REQUEST = "UNHANDLED_REQUEST";
    private static final String SETHANDLED_FALSE_CALLED = "SETHANDLED_FALSE_CALLED";