Example usage for org.springframework.integration.http.inbound HttpRequestHandlingMessagingGateway setRequestMapping

List of usage examples for org.springframework.integration.http.inbound HttpRequestHandlingMessagingGateway setRequestMapping

Introduction

In this page you can find the example usage for org.springframework.integration.http.inbound HttpRequestHandlingMessagingGateway setRequestMapping.

Prototype

public void setRequestMapping(RequestMapping requestMapping) 

Source Link

Document

Set the RequestMapping which allows you to specify a flexible RESTFul-mapping for this endpoint.

Usage

From source file:soap.client.Application.java

@Bean
public HttpRequestHandlingMessagingGateway httpGate() {
    HttpRequestHandlingMessagingGateway gateway = new HttpRequestHandlingMessagingGateway(true);
    RequestMapping mapping = new RequestMapping();
    mapping.setMethods(HttpMethod.GET);//from  w  w  w  .  j a v  a2 s . c om
    mapping.setPathPatterns("/foo");
    gateway.setRequestMapping(mapping);
    gateway.setRequestChannel(requestChannel());
    gateway.setRequestPayloadType(String.class);
    return gateway;
}

From source file:rest.json.Application.java

@Bean
public HttpRequestHandlingMessagingGateway httpGate() {
    HttpRequestHandlingMessagingGateway gateway = new HttpRequestHandlingMessagingGateway(true);
    RequestMapping mapping = new RequestMapping();
    mapping.setMethods(HttpMethod.POST);
    mapping.setPathPatterns("/foo");
    gateway.setRequestMapping(mapping);
    gateway.setRequestChannel(requestChannel());
    gateway.setRequestPayloadType(String.class);
    return gateway;
}

From source file:simple.flow.Application.java

@Bean
public HttpRequestHandlingMessagingGateway httpGate1() {
    HttpRequestHandlingMessagingGateway gateway = new HttpRequestHandlingMessagingGateway(true);
    RequestMapping mapping = new RequestMapping();
    mapping.setMethods(HttpMethod.POST);
    mapping.setPathPatterns("/requestChannel1");
    gateway.setRequestMapping(mapping);
    gateway.setRequestChannel(requestChannel1());
    gateway.setRequestPayloadType(String.class);
    return gateway;
}

From source file:simple.flow.Application.java

@Bean
public HttpRequestHandlingMessagingGateway httpGate2() {
    HttpRequestHandlingMessagingGateway gateway = new HttpRequestHandlingMessagingGateway(true);
    RequestMapping mapping = new RequestMapping();
    mapping.setMethods(HttpMethod.POST);
    mapping.setPathPatterns("/requestChannel2");
    gateway.setRequestMapping(mapping);
    gateway.setRequestChannel(requestChannel2());
    gateway.setRequestPayloadType(String.class);
    return gateway;
}