Created
May 7, 2022 07:58
-
-
Save davsclaus/477ddff5cdeb1ae03619aa544ce47e92 to your computer and use it in GitHub Desktop.
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- camel-k: language=xml --> | |
<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns="http://camel.apache.org/schema/spring" | |
xsi:schemaLocation=" | |
http://camel.apache.org/schema/spring | |
https://camel.apache.org/schema/spring/camel-spring.xsd"> | |
<!-- Write your routes here, for example: --> | |
<route id="xml"> | |
<from uri="timer:xml?period={{time:1000}}"/> | |
<setBody> | |
<simple>Hello Camel from ${routeId}</simple> | |
</setBody> | |
<log message="${body}"/> | |
</route> | |
</routes> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment