Example usage for org.springframework.web.servlet.handler AbstractHandlerMapping subclass-usage

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

Introduction

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

Usage

From source file newcontroller.RouterHandlerMapping.java

public class RouterHandlerMapping<T> extends AbstractHandlerMapping {
    @Autowired
    Optional<List<RouterDefinition<T>>> routerDefinitions;
    private final static Logger log = LoggerFactory.getLogger(RouterHandlerMapping.class);
    private final WebRouter<T> router = new WebRouter<>();
    private final HandlerApplier<T> handlerApplier;

From source file org.springframework.webflow.mvc.servlet.FlowHandlerMapping.java

/**
 * Implementation of {@link org.springframework.web.servlet.HandlerMapping} that follows a simple convention for
 * creating URL path mappings from the <i>ids</i> of registered {@link FlowDefinition flow definitions}.
 * 
 * This implementation returns a FlowHandler that invokes a flow if the current request path matches the id of a flow in
 * the configured {@link FlowDefinitionRegistry}. Alternatively, a custom {@link FlowHandler} may also be registered

From source file org.toobsframework.pres.url.mapping.RestHandlerMapping.java

public class RestHandlerMapping extends AbstractHandlerMapping {

    private ComponentViewController componentController;
    private ComponentLayoutController componentLayoutController;
    private DoItController doItController;
    private IUrlManager urlManager;

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

/**
 * Abstract base class for {@link HandlerMapping} implementations that define
 * a mapping between a request and a {@link HandlerMethod}.
 *
 * <p>For each registered handler method, a unique mapping is maintained with
 * subclasses defining the details of the mapping type {@code <T>}.