This section explains how to generate, build, and run a complete Apache Camel example as a FAB, where the starting point code is generated with the help of a Maven archetype.
In order to generate a project using an Fuse ESB Enterprise Maven archetype, you must have the following prerequisites:
Maven installation—Maven is a free, open source build tool from Apache. You can download the latest version from http://maven.apache.org/download.html (minimum is 2.0.9).
Internet connection—whilst performing a build, Maven dynamically searches external repositories and downloads the required artifacts on the fly. In order for this to work, your build machine must be connected to the Internet.
fusesource Maven repository is configured—in order to locate the archetypes, Maven's
settings.xmlfile must be configured with the location of thefusesourceMaven repository. For details of how to set this up, see Adding the FuseSource repository.
The camel-archetype-blueprint archetype creates a sample Maven
project that can be deployed as a FAB. To generate a Maven project with the
coordinates, org.fusesource.example:camel-fab, enter the following
command:
mvn archetype:generate -DarchetypeGroupId=org.apache.camel.archetypes -DarchetypeArtifactId=camel-archetype-blueprint -DarchetypeVersion=2.10.0.fuse-71-047 -DgroupId=org.fusesource.example -DartifactId=camel-fab
The result of this command is a directory,
, containing the
files for the generated FAB project.ProjectDir/camel-fab
To install and run the generated camel-fab project, perform the
following steps:
Build the project—open a command prompt and change directory to
. Use Maven to build the demonstration by entering the following command:ProjectDir/camel-fabmvn install
If this command runs successfully, the
directory should contain the JAR file,ProjectDir/camel-fab/targetcamel-fab-1.0-SNAPSHOT.jarand the JAR will also be installed in the local Maven repository.Install and start the camel-fab JAR—at the Fuse ESB Enterprise console, enter the following command:
karaf@root> install fab:mvn:org.fusesource.example/camel-fab
If the FAB is successfully installed, its bundle ID is logged to the console window. Using this bundle ID,
bundleID, start the FAB by entering the following console command:karaf@root> fab:start
bundleIDAfter entering this command, you should soon see output like the following being logged to the console screen:
>>>> MyTransform set body: Mon Sep 22 11:43:42 BST 2011 >>>> MyTransform set body: Mon Sep 22 11:43:44 BST 2011 >>>> MyTransform set body: Mon Sep 22 11:43:46 BST 2011
Stop the camel-fab bundle—using the FAB's bundle ID,
bundleID, stop thecamel-fabbundle, as follows:karaf@root> fab:stop
bundleID








