minor whitespace/reorg/comment improvement

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@688062 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2008-08-22 11:25:28 +00:00
parent a634647560
commit 46812e240d
1 changed files with 12 additions and 4 deletions

View File

@ -113,10 +113,6 @@
**
** http://activemq.apache.org/enterprise-integration-patterns.html
-->
<!-- configure the camel activemq component to use the current broker -->
<bean id="activemq" class="org.apache.activemq.camel.component.ActiveMQComponent" >
<property name="brokerURL" value="vm://localhost?create=false&amp;waitForStart=10000" />
</bean>
<camelContext id="camel" xmlns="http://activemq.apache.org/camel/schema/spring">
<!-- You can use a <package> element for each root package to search for Java routes -->
@ -129,6 +125,18 @@
</route>
</camelContext>
<!--
** Lets configure some Camel endpoints
**
** http://activemq.apache.org/camel/components.html
-->
<!-- configure the camel activemq component to use the current broker -->
<bean id="activemq" class="org.apache.activemq.camel.component.ActiveMQComponent" >
<property name="brokerURL" value="vm://localhost?create=false&amp;waitForStart=10000" />
</bean>
<!-- Uncomment to create a command agent to respond to message based admin commands on the ActiveMQ.Agent topic -->
<!--