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

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

Introduction

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

Usage

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

/**
 * Handler adapter for EverrestProcessor. Implements ServletContextAware,
 * ServletConfigAware since we need ServletContext and ServletConfig to be able
 * inject it via @Context annotation to resources or providers.
 *
 * @author andrew00x

From source file ar.com.zauber.commons.spring.web.handlers.TransactionAwareHandlerAdapter.java

/**
 * Decorator de {@link HandlerAdapter} que delega la resolucin del request
 * en un contexto transaccional definido por su Strategy
 * 
 * @author Pablo Grigolatto
 * @since Dec 2, 2009

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

public class HandlerAdapterWrapper implements org.springframework.web.servlet.HandlerAdapter {
    private static final ServletHelper servletHelper = new ServletHelper();
    private HandlerAdapter handlerAdapter;

    public boolean supports(Object handler) {
        return handlerAdapter.supports(handler);

From source file ar.com.zauber.commons.spring.web.handlers.UrlBasedHandlerAdapter.java

/**
 * Handler adapter that delegates to special handler adapters or a default one based on the request uri.
 * 
 * <p>Example bean:
 * 
 * <pre>

From source file org.springframework.flex.servlet.MessageBrokerHandlerAdapter.java

/**
 * {@link HandlerAdapter} for routing HTTP messages to a Spring-managed {@link MessageBroker}.
 * 
 * <p>
 * This class is automatically registered with the application context when using the <code>message-broker</code> tag in
 * the xml configuration namespace.

From source file org.impalaframework.extension.mvc.annotation.handler.LightweightAnnotationHandlerAdapter.java

/**
 * Simplified lightweight version of Spring's annotation adapter handler. Supports path to method mappings based on path literals only.
 * Also, currently does not support {@link org.springframework.web.bind.annotation.SessionAttributes} annotation
 * @see org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter
 * @author Phil Zoio
 */

From source file org.springframework.boot.ops.endpoint.mvc.EndpointHandlerAdapter.java

/**
 * MVC {@link HandlerAdapter} for {@link Endpoint}s. Similar in may respects to
 * {@link AbstractMessageConverterMethodProcessor} but not tied to annotated methods.
 * 
 * @author Phillip Webb
 * @see EndpointHandlerMapping

From source file org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerAdapter.java

/**
 * MVC {@link HandlerAdapter} for {@link Endpoint}s. Similar in may respects to
 * {@link AbstractMessageConverterMethodProcessor} but not tied to annotated methods.
 * 
 * @author Phillip Webb
 * @see EndpointHandlerMapping

From source file com.ms.commons.summer.web.handler.ComponentMethodHandlerAdapter.java

/**
 * @author zxc Apr 12, 2013 4:12:04 PM
 */
public class ComponentMethodHandlerAdapter implements HandlerAdapter {

    public static final String MODEL_KEY = "_$_MODEL_KEY_$_";

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

/**
 * A custom MVC HandlerAdapter that encapsulates the generic workflow associated with executing flows in a Servlet
 * environment. Delegates to mapped {@link FlowHandler flow handlers} to manage the interaction with executions of
 * specific flow definitions.
 * 
 * @author Keith Donald