Skip to content

Instantly share code, notes, and snippets.

@andrewharmellaw
Created June 13, 2013 09:59
Show Gist options
  • Save andrewharmellaw/5772603 to your computer and use it in GitHub Desktop.
Save andrewharmellaw/5772603 to your computer and use it in GitHub Desktop.
Example Java DSL Route for Camel
package com.mycompany.myapp.route;
import org.apache.camel.builder.RouteBuilder;
public class TDDRoute extends RouteBuilder {
public void configure() {
from("file:{{file.inbox}}").to("file:{{file.outbox}}");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment