Apache Camel ActiveMQ Example
In this article, we will see some example of ActiveMQ component. Apache activeMQ is one of the most popular open source JMS provider. We will use it to send message to a JMS Queue or Topic and consume...
View ArticleApache Camel Spring Example
Spring is the inversion of controller framework. Spring’s power comes in the way one can configure a bean and wire the dependencies. Camel route itself is a mix of various components, spring becomes a...
View ArticleApache Camel XPath Example
Processors and endpoints are an integral part of a camel routing. Camel uses Domain Specific Language (DSL) to define its routing. When it comes to defining predicates in the routing, you need a mature...
View ArticleApache Camel Aggregator Example
1. Introduction In this article, we will see an example of Aggregator using Apache Camel. We will create an order with two different types of items and shall see how these items are processed...
View ArticleApache Camel AMQP Example
1. Introduction In this article, we will see an example of AMQP implementation of Apache ActiveMQ using Apache Camel. 2. What is AMQP? AMQP is an open standard application layer protocol for...
View ArticleApache Camel Splitter Example
1. Introduction In this article, we will see an example of Splitter using Apache Camel. We will see an example of how we can use Apache Camel‘s Splitter to split an order into its items and process...
View ArticleApache Camel Routing Tutorial
1.Introduction Data that are exchanged between companies have increased a lot. The number of applications, which must be integrated, is increasing too. The interfaces use different technologies,...
View ArticleApache Camel Sample Application Example
1. Introduction What is Apache Camel? Even the Apache Camel site does not seem to have a succinct example of this. They do point to a Stack Overflow article which provides some insight. To me though...
View ArticleApache Camel Headers vs Properties Example
In this article, we provide an Apache Camel Headers vs Properties Example. 1. Introduction With the development and acceptance of distributed systems in big enterprises that solve big problems by...
View ArticleApache Camel Interceptor Example
1. Introduction This is an in-depth article related to the Apache Camel Interceptor. Apache Camel is open source java package to process data and integrate with other applications. You can use an...
View Article