Apache Camel 支持

Spring Integration 提供了一个 API 和配置,用于与在同一应用程序上下文中声明的 Apache Camel 端点进行通信。

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

  • Maven

  • Gradle

<dependency>
    <groupId>org.springframework.integration</groupId>
    <artifactId>spring-integration-camel</artifactId>
    <version>6.3.0</version>
</dependency>
compile "org.springframework.integration:spring-integration-camel:6.3.0"

Spring Integration 和 Apache Camel 都实现了企业集成模式,并提供了一种方便的方式来组合它们,但这两个项目在 API 和抽象实现方面采用了不同的方法。Spring Integration 完全依赖于 Spring Core 的依赖注入容器。它使用许多其他 Spring 项目(Spring Data、Spring AMQP、Spring for Apache Kafka 等)来实现其通道适配器。它还使用MessageChannel抽象作为一等公民,开发人员在构建集成流时需要了解它。另一方面,Apache Camel 没有提供消息通道的一等公民抽象,而是建议通过 API 隐藏的内部交换来组合其路由。此外,它还需要一些额外的依赖项和配置才能在 Spring 应用程序中使用。

即使最终的企业集成解决方案的各个部分如何实现并不重要,开发人员体验和高生产力也需要考虑。因此,开发人员可能出于多种原因选择一个框架而不是另一个框架,或者如果某些目标系统支持存在差距,则选择两个框架。Spring Integration 和 Apache Camel 应用程序可以通过它们实现通道适配器的许多外部协议相互交互。例如,Spring Integration 流可以将记录发布到 Apache Kafka 主题,该主题由消费者端的 Apache Camel 端点消费。或者,Apache Camel 路由可以将数据写入 SFTP 文件目录,该目录由 Spring Integration 的 SFTP 入站通道适配器轮询。或者,在同一个 Spring 应用程序上下文中,它们可以通过ApplicationEvent抽象进行通信。

为了使开发过程更容易,并避免不必要的网络跳跃,Apache Camel 提供了一个模块,通过消息通道与 Spring Integration 通信。只需要从应用程序上下文中引用一个MessageChannel,就可以发送或消费消息。当 Apache Camel 路由是消息流的发起者,而 Spring Integration 仅作为解决方案的一部分起辅助作用时,这非常有效。

为了获得类似的开发人员体验,Spring Integration 现在提供了一个通道适配器来调用 Apache Camel 端点,并可以选择等待回复。没有入站通道适配器,因为从 Spring Integration API 和抽象的角度来看,订阅MessageChannel来消费 Apache Camel 消息就足够了。

Apache Camel 的出站通道适配器

CamelMessageHandlerAbstractReplyProducingMessageHandler 的实现,可以在单向(默认)和请求-回复模式下工作。它使用 org.apache.camel.ProducerTemplateorg.apache.camel.Endpoint 发送(或发送和接收)消息。交互模式可以通过 ExchangePattern 选项控制(该选项可以在运行时通过 SpEL 表达式针对请求消息进行评估)。目标 Apache Camel 端点可以显式配置或作为在运行时评估的 SpEL 表达式配置。否则,它将回退到 ProducerTemplate 上提供的 defaultEndpoint。除了指定端点之外,还可以提供内联的显式 LambdaRouteBuilder,例如,为了对没有 Spring Integration 通道适配器支持的 Apache Camel 组件进行调用。

此外,可以提供 HeaderMapper<org.apache.camel.Message>CamelHeaderMapper 是默认实现),以确定要映射 Spring Integration 和 Apache Camel 消息之间的哪些头信息。默认情况下,所有头信息都会被映射。

CamelMessageHandler 支持 async 模式,调用 ProducerTemplate.asyncSend() 并为回复处理(如果有)生成 CompletableFuture

exchangeProperties 可以通过 SpEL 表达式进行自定义,该表达式必须评估为 Map

如果没有提供 ProducerTemplate,则会通过从应用程序上下文解析的 CamelContext bean 创建它。

@Bean
@ServiceActivator(inputChannel = "sendToCamel")
CamelMessageHandler camelService(ProducerTemplate producerTemplate) {
    CamelHeaderMapper headerMapper = new CamelHeaderMapper();
    headerMapper.setOutboundHeaderNames("");
    headerMapper.setInboundHeaderNames("testHeader");

    CamelMessageHandler camelMessageHandler = new CamelMessageHandler(producerTemplate);
    camelMessageHandler.setEndpointUri("direct:simple");
    camelMessageHandler.setExchangePatternExpression(spelExpressionParser.parseExpression("headers.exchangePattern"));
    camelMessageHandler.setHeaderMapper(headerMapper);
    return camelMessageHandler;
}

对于 Java DSL 流定义,可以使用 Camel 工厂提供的几种变体来配置此通道适配器。

@Bean
IntegrationFlow camelFlow() {
    return f -> f
            .handle(Camel.gateway().endpointUri("direct:simple"))
            .handle(Camel.route(this::camelRoute))
            .handle(Camel.handler().endpointUri("log:com.mycompany.order?level=WARN"));
}

private void camelRoute(RouteBuilder routeBuilder) {
    routeBuilder.from("direct:inbound").transform(routeBuilder.simple("${body.toUpperCase()}"));
}