Introduction:
Data transformation and integration are essential aspects of building robust and efficient integration solutions. Apache Camel provides powerful tools and capabilities for transforming and integrating data between different systems. In this section, we will explore how to perform data transformation and integration using Camel routes, and we will provide code samples to illustrate their implementation.

6.3.1 Data Transformation with Apache Camel:
Camel offers a wide range of data transformation capabilities, allowing you to convert data between different formats, perform complex data mappings, and apply business rules to transform data. Here’s an example of performing XML to JSON transformation:

Java
from("direct:xmlInput")
.marshal().xmljson()
.to("log:transformedMessage");

In this example, we use the marshal().xmljson() statement to convert an XML input to JSON format. The transformed message is then logged using the log component. Camel provides various data transformation options, including JSON, XML, CSV, and more.

6.3.2 Integration with Enterprise Systems:
Camel is well-suited for integrating with various enterprise systems, such as databases, ERP systems, CRM systems, and more. It provides a rich set of components and connectors for seamless integration. Here’s an example of integrating with a database:

Java
from("timer:myTimer?period=5000")
.setBody(constant("SELECT * FROM customers"))
.to("jdbc:dataSource")
.to("log:integratedMessage");

In this example, we use the jdbc component to execute a SQL query against a database. The query result is then logged using the log component. Camel supports integration with a wide range of enterprise systems, making it a powerful choice for building integration solutions.

6.3.3 Content-Based Routing and Data Enrichment:
Camel allows you to perform content-based routing, where messages are routed based on their content or metadata. This enables dynamic routing based on specific criteria. Additionally, Camel supports data enrichment, where additional data is retrieved and added to the message payload. Here’s an example:

Java
from("direct:start")
.choice()
.when(body().contains("important"))
.to("direct:important")
.otherwise()
.to("direct:default")
.end();

from("direct:important")
.setBody().simple("${body} - enriched")
.to("log:routedMessage");

from("direct:default")
.to("log:routedMessage");

In this example, messages containing the word “important” are routed to the “important” route, where the message body is enriched with additional data. Messages not matching the criteria are routed to the “default” route. The routed messages are then logged using the log component.

Conclusion:
Data transformation and integration are fundamental aspects of building robust integration solutions, and Apache Camel provides extensive support for these tasks. Whether you need to transform data between different formats, integrate with enterprise systems, or perform content-based routing and data enrichment, Camel’s powerful features and components simplify the process. By utilizing Camel routes and the available transformation capabilities, you can build efficient and flexible integration solutions. In the next section, we will explore advanced topics in Camel route development.