Example usage for org.springframework.web.servlet HandlerMapping interface-usage

List of usage examples for org.springframework.web.servlet HandlerMapping interface-usage

Introduction

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

Usage

From source file org.springframework.web.servlet.handler.AbstractHandlerMapping.java

/**
 * Abstract base class for HandlerMapping implementations.
 * Supports ordering, a default handler, and handler interceptors.
 *
 * @author Juergen Hoeller
 * @since 07.04.2003

From source file org.gwtwidgets.server.spring.GWTHandler.java

/**
 * The GWTHandler implements a Spring {@link HandlerMapping} which maps RPC from
 * URLs to {@link RemoteService} implementations. It does so by wrapping service
 * beans with a {@link GWTRPCServiceExporter} dynamically proxying all
 * {@link RemoteService} interfaces implemented by the service and delegating
 * RPC to these interfaces to the service. It is possible to use custom

From source file org.appcomponents.platform.mvc.PlatformRequestMappingHandlerMapping.java

/**
 * Platform request handler. Handler is responsible for handling request between App Components.
 * @author Martin Janys
 */
@Order(Ordered.HIGHEST_PRECEDENCE)
public class PlatformRequestMappingHandlerMapping implements HandlerMapping, ApplicationContextAware {

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

public class HandlerMatcherMapping implements HandlerMapping, ApplicationContextAware {
    private static final DataStructHelper DS = new DataStructHelper();
    private static final ServletHelper servletHelper = new ServletHelper();
    private HandlerMatcher handlerMatcher;
    private transient DispatcherServletHelper dispatcherServletHelper;
    private ApplicationContext applicationContext;

From source file org.everrest.spring.SpringComponentsLoader.java

/**
 * This loader registers any bean annotated with @Path, @Provider or @Filter in the EverRest framework.
 *
 * @author andrew00x
 */
public class SpringComponentsLoader implements BeanFactoryPostProcessor, HandlerMapping {