R2DBC 支持

Spring Integration 提供了通道适配器,用于通过R2DBC驱动程序使用对数据库的响应式访问来接收和发送消息。

您需要将此依赖项包含到您的项目中:

Maven
<dependency>
    <groupId>org.springframework.integration</groupId>
    <artifactId>spring-integration-r2dbc</artifactId>
    <version>5.5.13</version>
</dependency>
Gradle
compile "org.springframework.integration:spring-integration-r2dbc:5.5.13"

R2DBC 入站通道适配器

R2dbcMessageSource是一个MessageSource基于 的可轮询实现,R2dbcEntityOperations并根据选项生成带有FluxMono作为有效负载的消息,用于从数据库中获取的数据expectSingleResult。查询SELECT可以静态提供,也可以基于在每次receive()调用时评估的 SpEL 表达式。它R2dbcMessageSource.SelectCreator作为评估上下文的根对象存在,以允许使用StatementMapper.SelectSpec流畅的 API。默认情况下,此通道适配器将记录从选择映射到LinkedCaseInsensitiveMap实例。它可以定制,提供一个payloadType选项,由EntityRowMapper基于this.r2dbcEntityOperations.getConverter(). 这updateSql是可选的,用于标记数据库中的读取记录,以便从后续轮询中跳过。这UPDATE可以为操作提供 aBiFunction<DatabaseClient.GenericExecuteSpec, ?, DatabaseClient.GenericExecuteSpec>以将值绑定到UPDATE基于SELECT结果中的记录中。

此通道适配器的典型配置可能如下所示:

@Bean
@InboundChannelAdapter("fromR2dbcChannel")
public R2dbcMessageSource r2dbcMessageSourceSelectMany() {
    R2dbcMessageSource r2dbcMessageSource = new R2dbcMessageSource(this.r2dbcEntityTemplate,
            "SELECT * FROM person WHERE name='Name'");
    r2dbcMessageSource.setPayloadType(Person.class);
    r2dbcMessageSource.setUpdateSql("UPDATE Person SET name='SomeOtherName' WHERE id = :id");
    r2dbcMessageSource.setBindFunction(
				(DatabaseClient.GenericExecuteSpec bindSpec, Person o) -> bindSpec.bind("id", o.getId()));}
    return r2dbcMessageSource;
}

使用 Java DSL,此通道适配器的配置如下:

@Bean
IntegrationFlow r2dbcDslFlow(R2dbcEntityTemplate r2dbcEntityTemplate) {
    return IntegrationFlows
        .from(R2dbc.inboundChannelAdapter(r2dbcEntityTemplate,
            (selectCreator) ->
                    selectCreator.createSelect("person")
                        .withProjection("*")
                        .withCriteria(Criteria.where("id").is(1)))
                    .expectSingleResult(true)
                    .payloadType(Person.class)
                    .updateSql("UPDATE Person SET id='2' where id = :id")
                    .bindFunction((DatabaseClient.GenericExecuteSpec bindSpec, Person o) ->
                            bindSpec.bind("id", o.getId())),
            e -> e.poller(p -> p.fixedDelay(100)))
        .<Mono<?>>handle((p, h) -> p, e -> e.async(true))
        .channel(MessageChannels.flux())
        .get();
}

R2DBC 出站通道适配器

R2dbcMessageHandler是一个ReactiveMessageHandler执行INSERT(默认),UPDATEDELETE使用提供的数据库查询的实现R2dbcEntityOperationsR2dbcMessageHandler.Type可以静态配置或通过 SpEL 表达式针对请求消息进行配置。要执行的查询可以基于tableName,valuescriteria表达式选项,或者(如果tableName未提供)整个消息有效负载被视为org.springframework.data.relational.core.mapping.Table执行 SQL 的实体。该包org.springframework.data.relational.core.query被注册为 SpEL 评估上下文的导入,以直接访问Criteria用于UPDATEDELETE查询的 fluent API。ThevaluesExpression用于INSERTandUPDATE并且必须被评估为Map用于列值对以针对请求消息在目标表中执行更改。

此通道适配器的典型配置可能如下所示:

@Bean
@ServiceActivator(inputChannel = "toR2dbcChannel")
public R2dbcMessageHandler r2dbcMessageHandler(R2dbcEntityTemplate r2dbcEntityTemplate) {
    R2dbcMessageHandler messageHandler = new R2dbcMessageHandler(r2dbcEntityTemplate)
    messageHandler.setValuesExpression(new FunctionExpression<Message<?>>(Message::getPayload));
    messageHandler.setQueryType(R2dbcMessageHandler.Type.UPDATE);
    messageHandler.setCriteriaExpression(
        EXPRESSION_PARSER.parseExpression("T(Criteria).where('id).is(headers.personId)));
    return messageHandler;
}

使用 Java DSL,此通道适配器的配置如下:

.handle(R2dbc.outboundChannelAdapter(r2dbcEntityTemplate)
        .queryType(R2dbcMessageHandler.Type.UPDATE)
        .tableNameExpression("payload.class.simpleName")
        .criteria((message) -> Criteria.where("id").is(message.getHeaders().get("personId")))
        .values("{age:36}"))

1. see XML Configuration