blob: 45c169f5fca51e75a8d66f5c03d9ef46c78582ef [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- START SNIPPET: e1 -->
<!-- this is a spring XML file where we have Camel embedded -->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:camel="http://camel.apache.org/schema/spring"
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">
<!-- Here we define Camel, notice the namespace it uses -->
<camelContext xmlns="http://camel.apache.org/schema/spring">
<!-- Camel route to feed the ActiveMQ inbox queue once per second -->
<route id="timerToInRoute">
<from uri="timer:foo?period=1s"/>
<transform>
<simple>Message at ${date:now:yyyy-MM-dd HH:mm:ss}</simple>
</transform>
<to uri="activemq:queue:inbox"/>
</route>
<!-- Camel route to move messages from the ActiveMQ inbox to its outbox queue -->
<route id="inToOutRoute">
<from uri="activemq:queue:inbox"/>
<log message="Routing message from inbox to outbox queue with data ${body}"/>
<to uri="activemq:queue:outbox"/>
</route>
</camelContext>
<!-- create a Camel ActiveMQ component to use, using the Spring bean style -->
<!-- we use the vm protocol to communicate intra-jvm which is much faster than tcp -->
<bean id="activemq" class="org.apache.camel.component.activemq.ActiveMQComponent">
<!-- vm://myBroker is the vm protocol, and myBroker is the broker name -->
<property name="brokerURL" value="vm://myBroker?create=false&amp;waitForStart=5000"/>
</bean>
</beans>
<!-- END SNIPPET: e1 -->