Richard Allred
2019-05-23 497620c4d1bcb410267c56351432f87fb3aee5a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="
       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
       http://camel.apache.org/schema/spring       http://camel.apache.org/schema/spring/camel-spring.xsd">
 
    <!-- You could also define a traditional camel context here -->
    <!--
    <camelContext xmlns="http://camel.apache.org/schema/spring">
        <route>
            <from uri="timer://foo?period=1000"/>
            <setBody><simple>Hello World from camel-contex.xml</simple></setBody>
            <log message=">>> ${body}"/>
        </route>
    </camelContext>
    -->
</beans>