第 319 章 Spring Batch 组件
从 Camel 版本 2.10 开始提供
spring-batch: 组件和支持类在 Camel 和 Spring Batch 基础架构之间提供集成网桥。
Maven 用户需要将以下依赖项添加到这个组件的 pom.xml
中:
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-spring-batch</artifactId> <version>x.x.x</version> <!-- use the same version as your Camel core version --> </dependency>
319.1. URI 格式
spring-batch:jobName[?options]
其中 jobName 代表位于 Camel registry 中的 Spring 批处理作业的名称。或者,如果提供了 JobRegistry,它将用于查找该作业。
WARNING:此组件只能用于定义制作者端点,这意味着您无法在 from ()
语句中使用 Spring Batch 组件。