Example usage for org.springframework.web.servlet.mvc.method.annotation RequestMappingHandlerMapping subclass-usage

List of usage examples for org.springframework.web.servlet.mvc.method.annotation RequestMappingHandlerMapping subclass-usage

Introduction

In this page you can find the example usage for org.springframework.web.servlet.mvc.method.annotation RequestMappingHandlerMapping subclass-usage.

Usage

From source file com.jjw.cloudymvc.web.mvc.ElementHandlerMapping.java

/**
 * Extends RequestMappingHandlerMapping to provide a custom {@link ElementRequestCondition}.
 *
 * Plugged in via {@link com.jjw.cloudymvc.config.WebConfig#requestMappingHandlerMapping()}.
 */
public class ElementHandlerMapping extends RequestMappingHandlerMapping {

From source file de.codecentric.boot.admin.web.PrefixHandlerMapping.java

/**
 * {@link HandlerMapping} to map {@code @RequestMapping} on objects and prefixes them. The semantics
 * of {@code @RequestMapping} should be identical to a normal {@code @Controller}, but the Objects
 * should not be annotated as {@code @Controller} (otherwise they will be mapped by the normal MVC
 * mechanisms).
 *

From source file za.co.moronicgeek.spring.swagger.server.handler.PrefixHandlerMapping.java

/**
 * {@link HandlerMapping} to map {@code @RequestMapping} on objects and prefixes them. The semantics
 * of {@code @RequestMapping} should be identical to a normal {@code @Controller}, but the Objects
 * should not be annotated as {@code @Controller} (otherwise they will be mapped by the normal MVC
 * mechanisms).
 *

From source file net.sf.cocmvc.ConventionalHandlerMapping.java

/**
 * Convention over configuration HandlerMapping<br/>
 *
 * Beans following naming convention, say "XxxController", will be treated as Controllers,
 * and each {@code public} method of a Controller will be mapping to an URL request
 *

From source file com.coinblesk.server.utils.ApiVersionRequestMappingHandlerMapping.java

/**
 * as in
 * http://stackoverflow.com/questions/20198275/how-to-manage-rest-api-versioning-with-spring
 *
 * @author Thomas Bocek
 */

From source file org.fenixedu.bennu.spring.portal.PortalHandlerMapping.java

public class PortalHandlerMapping extends RequestMappingHandlerMapping {

    private static final Logger logger = LoggerFactory.getLogger(PortalHandlerMapping.class);

    private static final String[] EMPTY_ARRAY = new String[0];
    public static final String DELEGATE = "$DELEGATE_TO_PARENT$";

From source file org.springbyexample.mvc.method.annotation.ServiceHandlerMapping.java

/**
 * Creates {@link RequestMappingInfo} instances from type and method-level
 * {@link RequestMapping @RequestMapping} annotations in
 * {@link @RestResource @RestResource} classes.
 *
 * @author David Winterfeldt