LibraryToggle FramesPrintFeedback

Generating and Running an EIP FAB

Overview

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.

Prerequisites

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.xml file must be configured with the location of the fusesource Maven repository. For details of how to set this up, see Adding the FuseSource repository.

Generating an EIP FAB

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, ProjectDir/camel-fab, containing the files for the generated FAB project.

Running the EIP FAB

To install and run the generated camel-fab project, perform the following steps:

  1. Build the project—open a command prompt and change directory to ProjectDir/camel-fab. Use Maven to build the demonstration by entering the following command:

    mvn install

    If this command runs successfully, the ProjectDir/camel-fab/target directory should contain the JAR file, camel-fab-1.0-SNAPSHOT.jar and the JAR will also be installed in the local Maven repository.

  2. 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 bundleID

    After 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
  3. Stop the camel-fab bundle—using the FAB's bundle ID, bundleID, stop the camel-fab bundle, as follows:

    karaf@root> fab:stop bundleID
Comments powered by Disqus