Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Mastering Apache Camel
Mastering Apache Camel

Mastering Apache Camel: An advanced guide to Enterprise Integration using Apache Camel

Arrow left icon
Profile Icon Jean-Baptiste Onofré Profile Icon Bilgin Ismet Ibryam
Arrow right icon
$19.99 per month
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.4 (7 Ratings)
Paperback Jun 2015 238 pages 1st Edition
eBook
$9.99 $43.99
Paperback
$54.99
Subscription
Free Trial
Renews at $19.99p/m
Arrow left icon
Profile Icon Jean-Baptiste Onofré Profile Icon Bilgin Ismet Ibryam
Arrow right icon
$19.99 per month
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.4 (7 Ratings)
Paperback Jun 2015 238 pages 1st Edition
eBook
$9.99 $43.99
Paperback
$54.99
Subscription
Free Trial
Renews at $19.99p/m
eBook
$9.99 $43.99
Paperback
$54.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

Mastering Apache Camel

Chapter 2. Core Concepts

This chapter introduces the core concepts of Camel. These concepts are the key basis of all functionalities provided by Camel. We will use them in the next chapters. As we have seen in the previous chapter, Camel is an integration framework. This means that it provides everything to implement your mediation logic: messaging, routing, transformation, and connectivity.

We will look at the following concepts:

  • Messages
  • Exchanges
  • Camel contexts

Messages

Messages transport the data between the different parts of the mediation logic. Your mediation logic will define the flow of messages between different nodes.

A message flows in one direction, from a sender to a receiver. It's not possible to use the same message to answer the sender, we will have to use another message. A message is described in the org.apache.camel.Message interface.

The javadoc is available at http://camel.apache.org/maven/camel-2.13.0/camel-core/apidocs/org/apache/camel/Message.html.

A message contains the following:

  • ID: A message ID of type String. Camel creates an ID for you. This ID identifies the message and can be used for correlation or storage. For instance, we will see that the message ID is used in the idempotent consumer pattern to identify the message in a store.
  • Header: A set of headers, allowing you to store any kind of data associated with a message. The headers are stored as org.apache.camel.util.CaseInsensitiveMap by default. The CaseInsensitiveMap...

Exchange

Camel doesn't transport a message directly. The main reason is that a message flows only in one direction. When dealing with messaging, there are many Message Exchange Patterns (MEP) that we can use.

Depending on the use cases, we can send a message without expecting any return from the destination: this pattern is named event message and uses InOnlyMEP. For instance, when you read a file from the filesystem, you just process the file content, without returning anything to the endpoint that read the file. In that case, the component responsible for reading the filesystem will define an InOnlyMEP.

On the other hand, you may want to implement a request reply pattern: a response message should be returned to the sender of the request message, and so it uses an InOutMEP. For instance, you receive a SOAP Request from a WebService component, so you should return a SOAP Response (or SOAP Fault) to the message sender.

In Camel, MEP are described in the org.apache.camel.ExchangePattern...

Camel context

The Camel context is the runtime system and the loading container of all resources required for the execution of the routing. It keeps everything together to allow the user to execute the routing logic. When the context starts, it also starts various components and endpoints, and activates the routing rules.

The Camel context is described by the org.apache.camel.CamelContext interface (http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/CamelContext.html).

Camel context

A Camel context contains the following:

  • The components and endpoints used in the routing (see later for the details about components and endpoints)
  • The type converters used to transform a message of one type to another
  • The data formats used to define the format of a message body
  • The registry where Camel will look for the beans used in the routing
  • The languages describing expressions and predicates used in the routing by a language (xpath, xquery, PHP, and so on)
  • The routes definition itself allowing you to...

Processor

A processor is a node in the routing which is able to use, create, or modify an incoming exchange. During routing, the exchanges flow from one processor to another. This means all Enterprise Integration Patterns (EIP) are implemented using processors in Camel. The exchanges get in and out of a processor by using components and endpoints, as we will see later in this chapter.

A processor is described using the org.apache.camel.Processor interface. To create your own processor, you just have to implement the Processor interface and override the process() method:

Tip

Downloading the example code

You can download the example code files from your account at http://www.packtpub.com for all the Packt Publishing books you have purchased. If you purchased this book elsewhere, you can visit http://www.packtpub.com/support and register to have the files e-mailed directly to you.

public class MyProcessor implements Processor {

  public void process(Exchange exchange) {
System.out.println(&quot...

Routes

The Camel route is the routing definition. It's a graph of processors. The routes (routing definition) are loaded in the Camel context. The execution and flow of the exchange in a route is performed by the routing engine. The routes are used to decouple clients from servers, and producers from consumers: an exchange consumer doesn't know where the exchange comes from, and on the other hand an exchange producer doesn't know the destination of the exchange. Thanks to that, it provides a flexible way to add extra processing or change the routing with limited impact on the logic.

Each route has a unique identifier that you can specify (or Camel will create one for you). This identifier is used to easily find the route, especially when you want to log, debug, monitor, or manage a route (start or stop).

A route has exactly one input source (the input endpoint). A route has a life cycle similar to the Camel context with the same states: started, stopped, and suspended. To Camel...

Messages


Messages transport the data between the different parts of the mediation logic. Your mediation logic will define the flow of messages between different nodes.

A message flows in one direction, from a sender to a receiver. It's not possible to use the same message to answer the sender, we will have to use another message. A message is described in the org.apache.camel.Message interface.

The javadoc is available at http://camel.apache.org/maven/camel-2.13.0/camel-core/apidocs/org/apache/camel/Message.html.

A message contains the following:

  • ID: A message ID of type String. Camel creates an ID for you. This ID identifies the message and can be used for correlation or storage. For instance, we will see that the message ID is used in the idempotent consumer pattern to identify the message in a store.

  • Header: A set of headers, allowing you to store any kind of data associated with a message. The headers are stored as org.apache.camel.util.CaseInsensitiveMap by default. The CaseInsensitiveMap...

Exchange


Camel doesn't transport a message directly. The main reason is that a message flows only in one direction. When dealing with messaging, there are many Message Exchange Patterns (MEP) that we can use.

Depending on the use cases, we can send a message without expecting any return from the destination: this pattern is named event message and uses InOnlyMEP. For instance, when you read a file from the filesystem, you just process the file content, without returning anything to the endpoint that read the file. In that case, the component responsible for reading the filesystem will define an InOnlyMEP.

On the other hand, you may want to implement a request reply pattern: a response message should be returned to the sender of the request message, and so it uses an InOutMEP. For instance, you receive a SOAP Request from a WebService component, so you should return a SOAP Response (or SOAP Fault) to the message sender.

In Camel, MEP are described in the org.apache.camel.ExchangePattern enumeration...

Camel context


The Camel context is the runtime system and the loading container of all resources required for the execution of the routing. It keeps everything together to allow the user to execute the routing logic. When the context starts, it also starts various components and endpoints, and activates the routing rules.

The Camel context is described by the org.apache.camel.CamelContext interface (http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/CamelContext.html).

A Camel context contains the following:

  • The components and endpoints used in the routing (see later for the details about components and endpoints)

  • The type converters used to transform a message of one type to another

  • The data formats used to define the format of a message body

  • The registry where Camel will look for the beans used in the routing

  • The languages describing expressions and predicates used in the routing by a language (xpath, xquery, PHP, and so on)

  • The routes definition itself allowing you to design...

Processor


A processor is a node in the routing which is able to use, create, or modify an incoming exchange. During routing, the exchanges flow from one processor to another. This means all Enterprise Integration Patterns (EIP) are implemented using processors in Camel. The exchanges get in and out of a processor by using components and endpoints, as we will see later in this chapter.

A processor is described using the org.apache.camel.Processor interface. To create your own processor, you just have to implement the Processor interface and override the process() method:

Tip

Downloading the example code

You can download the example code files from your account at http://www.packtpub.com for all the Packt Publishing books you have purchased. If you purchased this book elsewhere, you can visit http://www.packtpub.com/support and register to have the files e-mailed directly to you.

public class MyProcessor implements Processor {

  public void process(Exchange exchange) {
System.out.println("Hello...

Routes


The Camel route is the routing definition. It's a graph of processors. The routes (routing definition) are loaded in the Camel context. The execution and flow of the exchange in a route is performed by the routing engine. The routes are used to decouple clients from servers, and producers from consumers: an exchange consumer doesn't know where the exchange comes from, and on the other hand an exchange producer doesn't know the destination of the exchange. Thanks to that, it provides a flexible way to add extra processing or change the routing with limited impact on the logic.

Each route has a unique identifier that you can specify (or Camel will create one for you). This identifier is used to easily find the route, especially when you want to log, debug, monitor, or manage a route (start or stop).

A route has exactly one input source (the input endpoint). A route has a life cycle similar to the Camel context with the same states: started, stopped, and suspended. To Camel, a context...

Channels


In every Camel route, there is a channel that sits between each processor in the route graph. It's responsible for the routing of an Exchange to the next Processor in the graph. The channel acts as a controller that monitors and controls the routing at runtime. It allows Camel to enrich the route with interceptors. For instance, the Camel tracer or the error handling are functionalities implemented using an interceptor on the channel.

The channel is described by the org.apache.camel.Channel interface. You can configure your own interceptor on the channels by describing it in Camel context.

Camel supports three kinds of interceptors on the channels:

  • Global interceptors: This intercepts all exchanges on the channels

  • Interceptors on the incoming exchanges: This has limited the scope of the interceptor only on the first channel (the one just after the first endpoint)

  • Interceptors on the exchanges going to one specific endpoint: This limits the interceptor to the channel just before a given...

Left arrow icon Right arrow icon
Download code icon Download Code

Description

This book is intended for all Camel users who want to get the best out of Camel, and who want to implement the most efficient integration logic using best practices.

Who is this book for?

This book is intended for all Camel users who want to get the best out of Camel, and who want to implement the most efficient integration logic using best practices.

What you will learn

  • Walk through the key features and core concepts of Apache Camel
  • Implement routing with Processor, using Camel Java DSL and Camel Blueprint DSL
  • Use beans with Camel to access to the POJO model, and leverage IoC frameworks like Spring or Blueprint
  • Get to grips with the EIPs supported by Camel and implement them in your projects
  • Create polling and eventdriven components, and learn how Camel uses components to create endpoints
  • Identify and deal with errors in your routing logic
  • Conduct unit tests and integration tests on your Camel routes

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jun 30, 2015
Length: 238 pages
Edition : 1st
Language : English
ISBN-13 : 9781782173151
Vendor :
Apache
Category :
Languages :
Concepts :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Jun 30, 2015
Length: 238 pages
Edition : 1st
Language : English
ISBN-13 : 9781782173151
Vendor :
Apache
Category :
Languages :
Concepts :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 136.97
Instant Apache Camel Message Routing
$26.99
Apache Camel Developer's Cookbook
$54.99
Mastering Apache Camel
$54.99
Total $ 136.97 Stars icon
Banner background image

Table of Contents

9 Chapters
1. Key Features Chevron down icon Chevron up icon
2. Core Concepts Chevron down icon Chevron up icon
3. Routing and Processors Chevron down icon Chevron up icon
4. Beans Chevron down icon Chevron up icon
5. Enterprise Integration Patterns Chevron down icon Chevron up icon
6. Components and Endpoints Chevron down icon Chevron up icon
7. Error Handling Chevron down icon Chevron up icon
8. Testing Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.4
(7 Ratings)
5 star 42.9%
4 star 14.3%
3 star 0%
2 star 28.6%
1 star 14.3%
Filter icon Filter
Top Reviews

Filter reviews by




Mitchell Trachtenberg Jan 21, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
An invaluable introduction to Apache Camel. I would hope it can be updated with all the developments since the second edition, since the evolution of Camel's ecosystem has been rapid.
Feefo Verified review Feefo
NJ Aug 21, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This is really a great book for anyone who wants to learn Camel and use in their project. Book thoroughly explains all the enterprise integration patterns and how that's implemented in Camel. The book is very well written and explains the complex topics easily. Good for anyone who is learning Camel for first time or want to update his knowledge.
Amazon Verified review Amazon
"H Gasmi" Aug 06, 2020
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book is very good as an introduction to the framework before exploring it in detail. The topics are nicely and clearly covered with detailed and complete examples.
Amazon Verified review Amazon
S. Bryant Sep 08, 2015
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
A nice mix of hands-on get-going quickly instruction with added discussion on why and how Camel works. You can pick and chose how in depth you want to be and/or revisit sections later for more in-depth reading. I am finding it very useful for second and third project - refreshing my memory by re-reading specific chapters that apply to my current problem space.
Amazon Verified review Amazon
Alsq Sep 23, 2015
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
If you care for stream-of-consciousness grade school printed English, pages of (repetitive) listing of pom.xml files, and irritating print with little regard for proper form, use of pronouns or articles, or even trivial editing (e.g. PrefixerProcessor and PrefixerProcesser [sic] appear two lines away from each other [p. 24]), this is your book. The text could be a stenographical transcription of a recorded live classroom session, enriched with pro-forma screen captures of maven build output. A promise of concise explanation implied in the advertised restrained page count is completely squandered with content poorly organized and inadequate to the task of providing a coherent, well-explained introduction organized according to a readily recognizable path. The table of content suggests it might have been (I fell for it), but the implementation is truly disappointing. If you are already fluent in Camel, but dated, this could maybe fill in as a short partial read on the latest about this project, and how to integrate it with the Apache Karaf OSGi container. But then, you would not need an introductory tutorial like this book appear to me it claims to be. Alas, I will have to backtrack and look elsewhere. Caveat emptor, as the book is not that cheap either.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.