You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Console Example

Available as of Camel 2.10

This example is located in the Camel distribution at examples/camel-example-console.

This is a beginner example that demonstrates how to get started with Apache Camel.

In this example we integrate with the console using the Stream component. The example is an interactive example that reads input from the console, and then transforms the input to upper case and print it back on the console.

This is implemented in a Camel route, in a Spring XML file as shown below.

Error formatting macro: snippet: java.lang.NullPointerException

This example can be run from the command line using Maven with the following command:

mvn compile exec:java

In the console you can enter a message and press ENTER. And then Camel responds with the message in upper case, as shown below:

[onsole.CamelConsoleMain.main()] SpringCamelContext             INFO  Apache Camel 2.10 (CamelContext: camel-1) started in 0.455 seconds
Enter something: camel rocks
CAMEL ROCKS
Enter something: and we have fun
AND WE HAVE FUN
Enter something: 

To stop the example hit ctrl + c

You can also run this example from your editor. For example from Eclipse you can import this project using: File -> Import ... -> Existing Maven Project -> select the pom.xml from the examples\camel-example-console directory.

And then open the org.apache.camel.example.console.CamelConsoleMain class, and right click: Run As -> Java Application.
TODO: screenshot

See also

  • No labels