Skip to content

Instantly share code, notes, and snippets.

@elek
Created July 14, 2014 07:26
Show Gist options
  • Save elek/8f817dd11ad6b6d7a065 to your computer and use it in GitHub Desktop.
Save elek/8f817dd11ad6b6d7a065 to your computer and use it in GitHub Desktop.
<routes xmlns="http://camel.apache.org/schema/spring" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring-2.13.2.xsd">
<route id="bar">
<from uri="timer://simple?fixedRate=true&amp;period=10s"/>
<to uri="bean:HelloWorld"></to>
<choice>
<when>
<mvel>request.body.number == &#39;123456789&#39;</mvel>
<log message="ok"></log>
</when>
<otherwise>
<to uri="log:route1"/>
</otherwise>
</choice>
<to uri="log:route1"/>
<to uri="direct-vm:route2"></to>
</route>
</routes>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment