Does Apache Camel supports Spring Batch? I am my batch using Camel routes. Now we want to migrate to Spring Batch but not sure if my camel routes can integrate with Spring batch.
Updated answer: Spring batch is supported as of Camel 2.10,
http://camel.apache.org/springbatch.html
Essentially the Spring Batch component in Camel will be able to trigger Spring batch jobs form a route.
Example:
from("direct:startBatch").to("spring-batch:myJob"); where "myJob" is spring batch job defined elsewhere.
All Camel headers in the exchange are sent as parameter to the spring batch job.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With