- Apache Camel - Discussion
- Apache Camel - Useful Resources
- Apache Camel - Quick Guide
- Using Camel with Spring
- Apache Camel - Project
- Apache Camel - Message Queues
- Apache Camel - Components
- Apache Camel - Endpoints
- Apache Camel - CamelContext
- Apache Camel - Architecture
- Apache Camel - Features
- Apache Camel - Overview
- Apache Camel - Introduction
- Apache Camel - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Apache Camel - Architecture
The Camel architecture consists three components − Integration Engine and Router, Processors, and Components. This is illustrated in the following figure −
The Camel core itself is very small and contains 13 essential components. The rest 80+ components are outside the core. This helps in maintaining a low dependency on where it is deployed and promotes extensions in future. The Components module provides an Endpoint interface to the external world. The Endpoints are specified by URIs, such as file:/order and jms:orderQueue that you have seen in the last chapter.
The Processors module is used for manipulating and mediating messages between Endpoints. The EIPs that I mentioned earper are implemented in this module. It currently supports 40+ patterns as documented in the
and other useful processing units.The Processors and Endpoints are wired together in Integration Engine and Router module using DSLs. While wiring these, you may use filters to filter messages based on user-defined criteria. As mentioned earper, you have several options in writing these rules. You may use Java, Scala, Groovy, or even XML for this.
Now, we come to the most important component of Camel, which may be considered as the core − the CamelContext.
Advertisements