RouteBulider1.java 897 B

1234567891011121314151617181920212223
  1. package camel.terminal.crawler.route;
  2. import camel.terminal.crawler.processor.Aggregate;
  3. import camel.terminal.crawler.processor.AggregateProcessor;
  4. import camel.terminal.crawler.processor.HttpProcessor;
  5. import camel.terminal.crawler.processor.Split;
  6. import org.apache.camel.builder.RouteBuilder;
  7. /**
  8. * Created by lingfeng on 2016/7/25.
  9. */
  10. public class RouteBulider1 extends RouteBuilder {
  11. public void configure() throws Exception {
  12. from("quartz://myGroup/myTimerName?cron=0/5 * * * * ? ").routeId("list")
  13. .to("http://localhost:9999/list")
  14. .split().method(Split.class, "splitJsonArray")
  15. .process(new HttpProcessor("str")).to("http://localhost:9999/str")
  16. .process(new AggregateProcessor("key1"))
  17. .aggregate(header("test_correlation_key"), new Aggregate()).completionSize(3).to("stream:out");
  18. }
  19. }