Created
May 13, 2011 08:04
-
-
Save davsclaus/970178 to your computer and use it in GitHub Desktop.
camel context mbean dump routes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<routes xmlns="http://camel.apache.org/schema/spring"> | |
<route group="org.apache.camel.management.ManagedCamelContextDumpRoutesAsXmlTest$1" id="myRoute"> | |
<from uri="direct:start"/> | |
<log message="Got ${body}" id="log1"/> | |
<to uri="mock:result" id="to1"/> | |
</route> | |
<route group="org.apache.camel.management.ManagedCamelContextDumpRoutesAsXmlTest$1" id="myOtherRoute"> | |
<from uri="seda:bar"/> | |
<filter id="filter1"> | |
<expressionDefinition/> | |
<to uri="mock:camel" id="to2"/> | |
</filter> | |
</route> | |
</routes> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment