Skip to content

Instantly share code, notes, and snippets.

@mzimecki
Created April 22, 2017 14:40
Show Gist options
  • Save mzimecki/46e241cef916129e404d342bcc0f903b to your computer and use it in GitHub Desktop.
Save mzimecki/46e241cef916129e404d342bcc0f903b to your computer and use it in GitHub Desktop.
[medium] Camel route example
@Component
public class HelloRoute extends RouteBuilder {
@Override
public void configure() throws Exception {
from(ServiceConstants.HELLO_SERVICE_ENDPOINT)
.id(ServiceConstants.HELLO_ROUTE_ID)
.log("I'm in the Camel Route!")
.process(new HelloProcessor());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment