Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

The Main class is provided in the following two components

  • camel-core JAR in the org.apache.camel.Main class (requires Camel 2.6)
  • camel-spring JAR in the org.apache.camel.spring.Main class

Using camel-core JAR example

...

Wiki Markup
{snippet:id=e1|lang=java|title=MainExample|url=camel/trunk/camel-core/src/test/java/org/apache/camel/main/MainExample.java}

Using camel-spring JAR example

...

This would be similar to the camel-core JAR example, however you would use the Main class from the org.apache.camel.spring package.
The Main class from camel-spring JAR has many more options and is prepared for booting Camel from Spring XML files.

See Also