如何为http入站网关(DSL样式)设置ID?

时间:2019-02-22 20:24:04

标签: spring-integration spring-integration-dsl spring-integration-http

在Spring Boot应用程序中,我具有以下入站网关(Java DSL):

@Bean
    public IntegrationFlow upperCaseFlow() {
        return IntegrationFlows
                .from(
                        Http.inboundGateway("/conversions/upperCase")
                        .requestMapping(r -> r.methods(HttpMethod.POST).consumes("text/plain"))
                        .requestPayloadType(String.class)
                        .id("upperCaseGateway")
                )
                .<String>handle((p, h) -> p.toUpperCase())
                .get();
    }

我认为 .id(“ upperCaseGateway”)是将“ id” 设置为网关的部分。

另一方面,我正在尝试以稍微不同的DSL样式实现另一个HTTP入站网关,如下所示:

@Bean
    public IntegrationFlow httpGetFlow() {
        return IntegrationFlows.from(httpGetGate()).channel("httpGetChannel").handle("personEndpoint", "get").get();
    }

@Bean
    public MessagingGatewaySupport httpGetGate() {
        HttpRequestHandlingMessagingGateway handler = new HttpRequestHandlingMessagingGateway();
        handler.setRequestMapping(createMapping(new HttpMethod[]{HttpMethod.GET}, "/persons/{personId}"));
        handler.setPayloadExpression(parser().parseExpression("#pathVariables.personId"));
        handler.setHeaderMapper(headerMapper());

        return handler;
    }

@Bean
    public HeaderMapper<HttpHeaders> headerMapper() {
        return new DefaultHttpHeaderMapper();
    }

我的问题: 在创建http入站网关的第二种方式中,如何为网关设置ID为“ getPersonsGateway ”的ID? 我看到第一种样式可以通过简单的 .id(“ upperCaseGateway”)调用来实现。

任何指导将不胜感激!

此致, 巴拉斯

1 个答案:

答案 0 :(得分:1)

id只是一个bean名称;对于复合组件(消费者),它是消费者端点Bean名称,消息处理程序将获得<id>.handler

对于简单的消息驱动器组件(例如http入站适配器),它只是Bean名称。因此,适当命名您的豆子。

任何一个

@Bean("upperCaseGateway")
public MessagingGatewaySupport httpGetGate() {

或者简单地

@Bean
public MessagingGatewaySupport upperCaseGateway() {