You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2012/04/10 08:32:14 UTC

svn commit: r1311594 - /camel/trunk/examples/camel-example-console/src/main/resources/META-INF/spring/camel-context.xml

Author: davsclaus
Date: Tue Apr 10 06:32:14 2012
New Revision: 1311594

URL: http://svn.apache.org/viewvc?rev=1311594&view=rev
Log:
Added new getting started example.

Modified:
    camel/trunk/examples/camel-example-console/src/main/resources/META-INF/spring/camel-context.xml

Modified: camel/trunk/examples/camel-example-console/src/main/resources/META-INF/spring/camel-context.xml
URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-console/src/main/resources/META-INF/spring/camel-context.xml?rev=1311594&r1=1311593&r2=1311594&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-console/src/main/resources/META-INF/spring/camel-context.xml (original)
+++ camel/trunk/examples/camel-example-console/src/main/resources/META-INF/spring/camel-context.xml Tue Apr 10 06:32:14 2012
@@ -22,6 +22,8 @@
        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">
 
+  <!-- START SNIPPET: e1 -->
+  <!-- camelContext is the Camel runtime, where we can host Camel routes -->
   <camelContext xmlns="http://camel.apache.org/schema/spring">
     <route>
       <!-- read input from the console using the stream component -->
@@ -35,5 +37,6 @@
       <to uri="stream:out"/>
     </route>
   </camelContext>
+  <!-- END SNIPPET: e1 -->
 
 </beans>