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
€8.99 €32.99
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.4 (7 Ratings)
eBook Jun 2015 238 pages 1st Edition
eBook
€8.99 €32.99
Paperback
€41.99
Subscription
Free Trial
Renews at €18.99p/m
Arrow left icon
Profile Icon Jean-Baptiste Onofré Profile Icon Bilgin Ismet Ibryam
Arrow right icon
€8.99 €32.99
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.4 (7 Ratings)
eBook Jun 2015 238 pages 1st Edition
eBook
€8.99 €32.99
Paperback
€41.99
Subscription
Free Trial
Renews at €18.99p/m
eBook
€8.99 €32.99
Paperback
€41.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

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 : 9781782173168
Vendor :
Apache
Category :
Languages :
Concepts :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

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

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.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
€189.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
€264.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 104.97
Instant Apache Camel Message Routing
€20.99
Apache Camel Developer's Cookbook
€41.99
Mastering Apache Camel
€41.99
Total 104.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

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.