Skip to content
This repository has been archived by the owner on Aug 23, 2018. It is now read-only.

Latest commit

 

History

History
33 lines (22 loc) · 924 Bytes

File metadata and controls

33 lines (22 loc) · 924 Bytes

Example change data capture

jdbc to messagehub

jdbc to s3

s3 to messagehub

E.g.

from("direct:pollEnrich").routeId("pollEnrich") 
                            .pollEnrich() 
.simple("aws-s3://{{buckets.mybucket}}?amazonS3Client=#amazonS3Client&deleteAfterRead=false&fileName=${in.header.CamelAwsS3Key}")
                            .convertBodyTo(byte[].class) 
                            .to(...)

camel xml runner

<!-- this main class will automatic include Spring XML files from the META-INF/spring directory when running -->
<mainClass>org.apache.camel.spring.Main</mainClass>