You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2009/01/28 21:26:07 UTC

svn commit: r738607 - /camel/trunk/examples/camel-example-pojo-messaging/README.txt

Author: janstey
Date: Wed Jan 28 20:26:07 2009
New Revision: 738607

URL: http://svn.apache.org/viewvc?rev=738607&view=rev
Log:
CAMEL-1259 - Add README.txt

Added:
    camel/trunk/examples/camel-example-pojo-messaging/README.txt   (with props)

Added: camel/trunk/examples/camel-example-pojo-messaging/README.txt
URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-pojo-messaging/README.txt?rev=738607&view=auto
==============================================================================
--- camel/trunk/examples/camel-example-pojo-messaging/README.txt (added)
+++ camel/trunk/examples/camel-example-pojo-messaging/README.txt Wed Jan 28 20:26:07 2009
@@ -0,0 +1,48 @@
+POJO Messaging Example
+======================
+
+This example shows that you don't need to learn Camel's super cool DSLs 
+if you don't want to. Camel has a set of annotations that allow you to 
+produce, consume or route messages to endpoints. You can run it using
+Maven or Ant.
+
+For detailed documentation on how to use this example please see 
+  http://camel.apache.org/pojo-messaging-example.html
+  
+The example should run if you type
+  mvn compile camel:run
+
+To run the example with Ant
+  a. You need to have Apache ActiveMQ installed. It can be downloaded from 
+    http://activemq.apache.org/
+
+  b. Export / Set ACTIVEMQ_HOME to the top level Apache ActiveMQ install
+  directory
+    UNIX
+    export ACTIVEMQ_HOME=<path to ActiveMQ install directory>
+    Windows
+    set ACTIVEMQ_HOME=<path to ActiveMQ install directory>
+
+  c. To run the example using Ant, type
+    ant
+
+To stop the example hit ctrl + c
+
+To use log4j as the logging framework add this to the pom.xml:
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+and log4j.properties is located in src/main/resources 
+
+If you hit an problems please let us know on the Camel Forums
+  http://camel.apache.org/discussion-forums.html
+
+Please help us make Apache Camel better - we appreciate any feedback you may
+have.  Enjoy!
+
+------------------------
+The Camel riders!
+
+
+

Propchange: camel/trunk/examples/camel-example-pojo-messaging/README.txt
------------------------------------------------------------------------------
    svn:eol-style = native