Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Mastering Apache Camel

You're reading from  Mastering Apache Camel

Product type Book
Published in Jun 2015
Publisher Packt
ISBN-13 9781782173151
Pages 238 pages
Edition 1st Edition
Languages
Concepts
Authors (3):
Bilgin Ismet Ibryam Bilgin Ismet Ibryam
Profile icon Bilgin Ismet Ibryam
Jean Baptiste Onofre Jean Baptiste Onofre
Profile icon Jean Baptiste Onofre
Jean-Baptiste Onofré Jean-Baptiste Onofré
Profile icon Jean-Baptiste Onofré
View More author details

Components


The components are the main Camel extension point. Basically, a component is a factory of endpoints that you use in routes. If you take a look in the Component interface, you can see the following code:

public interface Component extends CamelContextAware {
   
   Endpoint createEndpoint(String uri) throws Exception;
   
   EndpointConfiguration createConfiguration(String uri) throws Exception;

   ComponentConfiguration createComponentConfiguration();

   boolean useRawUri();

}

You can see that a Component lives in the CamelContext (as it extends the CamelContextAware interface). This means that we instantiate a Component and add the instance in the CamelContext.

The Component is stored in the CamelContext using a unique identifier—the scheme. Later in the chapter, we will see that this schema is used to refer the Component in the route definition.

Bootstrapping a component

A component can be bootstrapped in two ways.

The first way is to explicitly instantiate the Component. You can...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}