Repository: camel Updated Branches: refs/heads/master 4adf56cda -> 3b7abccea
CAMEL-9337 Add readme.txt to all examples Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/6f3e00cf Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/6f3e00cf Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/6f3e00cf Branch: refs/heads/master Commit: 6f3e00cff5f1d45800b119d20bd097c0d3509456 Parents: a261373 Author: gautric <gaut...@redhat.com> Authored: Wed Dec 9 18:36:30 2015 +0100 Committer: Claus Ibsen <davscl...@apache.org> Committed: Thu Dec 10 07:44:57 2015 +0100 ---------------------------------------------------------------------- .../camel-example-activemq-tomcat/README.md | 43 ++++++++++++++++++++ .../camel-example-activemq-tomcat/README.txt | 34 ---------------- 2 files changed, 43 insertions(+), 34 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/6f3e00cf/examples/camel-example-activemq-tomcat/README.md ---------------------------------------------------------------------- diff --git a/examples/camel-example-activemq-tomcat/README.md b/examples/camel-example-activemq-tomcat/README.md new file mode 100644 index 0000000..b2f7719 --- /dev/null +++ b/examples/camel-example-activemq-tomcat/README.md @@ -0,0 +1,43 @@ +# Embedded ActiveMQ Broker with Camel running in Apache Tomcat + +## Introduction +This example shows how you can embed Apache ActiveMQ Broker and Camel in a web application, which can run on Apache Tomcat or other web containers. + +### Camel component used in this example + +* camel-core +* camel-jms +* camel-spring + +## Build + +You will need to build this example first: + + mvn install + +Which will create a `.war` file in the target directly. + +You can then deploy this `.war` file in any web container such as +Apache Tomcat, by copying the `.war` file to its `/webapp` directory. + +This example embeds ActiveMQ Broker and a Camel application +which will continuously send a message per second to an inbox queue. +Then another Camel route will route messages from the inbox +to the outbox queue. + +This example is documented at + [http://camel.apache.org/activemq-camel-tomcat.html](http://camel.apache.org/activemq-camel-tomcat.html) + +The ActiveMQ broker is configured in the `src/main/resources/broker.xml` file. +And the Camel application in the `src/main/resources/camel-context.xml` file. + +## Forum, Help, etc + +If you hit an problems please let us know on the Camel Forums + [http://camel.apache.org/discussion-forums.html](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! http://git-wip-us.apache.org/repos/asf/camel/blob/6f3e00cf/examples/camel-example-activemq-tomcat/README.txt ---------------------------------------------------------------------- diff --git a/examples/camel-example-activemq-tomcat/README.txt b/examples/camel-example-activemq-tomcat/README.txt deleted file mode 100644 index e9dbc21..0000000 --- a/examples/camel-example-activemq-tomcat/README.txt +++ /dev/null @@ -1,34 +0,0 @@ -Embedded ActiveMQ Broker with Camel running in Apache Tomcat -============================================================ - -This example shows how you can embed Apache ActiveMQ Broker -and Camel in a web application, -which can run on Apache Tomcat or other web containers. - -You will need to build this example first: - mvn install - -Which will create a .war file in the target directly. - -You can then deploy this .war file in any web container such as -Apache Tomcat, by copying the .war file to its /webapp directory. - -This example embeds ActiveMQ Broker and a Camel application -which will continuously send a message per second to an inbox queue. -Then another Camel route will route messages from the inbox -to the outbox queue. - -This example is documented at - http://camel.apache.org/activemq-camel-tomcat.html - -The ActiveMQ broker is configured in the src/main/resources/broker.xml file. -And the Camel application in the src/main/resources/camel-context.xml file. - -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!