java-tutorials/spring-apache-camel/README.md

36 lines
1.2 KiB
Markdown
Raw Normal View History

2016-02-04 03:43:39 -05:00
<b><h2>Configure and Use Apache Camel with Spring</h2></b>
This article will demonstrate how to configure and use Apache Camel with Spring Framework.
2016-03-01 04:38:37 -05:00
<b><h2>Relevant Articles</h2></b>
2016-02-04 03:43:39 -05:00
<ul>
<li><a href="http://camel.apache.org/">Apache Camel</a></li>
<li><a href="http://www.enterpriseintegrationpatterns.com/patterns/messaging/toc.html">Enterprise Integration Patterns</a></li>
<li><a href="http://www.baeldung.com/apache-camel-intro">Introduction To Apache Camel</a></li>
<li><a href="http://www.baeldung.com/camel-integration-patterns">Integration Patterns With Apache Camel</a></li>
2016-02-04 03:43:39 -05:00
</ul>
<b><h2>Framework Versions:</h2></b>
<ul>
<li>Spring 4.2.4</li>
<li>Apache Camel 2.16.1</li>
</ul>
<b><h2>Build and Run Application</h2></b>
To build this application execute following maven command in ApacheCamelFileProcessor directory.
<code>mvn clean install</code>
2016-02-18 22:31:51 -05:00
To run this application you can either run our main class App from your IDE or you can execute following maven command:
2016-02-04 03:43:39 -05:00
2016-02-29 19:34:23 -05:00
<code>mvn exec:java -Dexec.mainClass="App"</code>
2016-03-01 04:38:37 -05:00
<b><h2>Relevant Articles on Baeldung</h2></b>
<ul>
<li><a href="http://www.baeldung.com/spring-apache-camel-tutorial">Using Apache Camel with Spring</a></li>
</ul>