Skip to content

Latest commit

 

History

History
50 lines (25 loc) · 1.61 KB

ReadMe.md

File metadata and controls

50 lines (25 loc) · 1.61 KB

Camel Spring QuickStart

This quickstart runs a Java application using Spring with Apache Camel.

This example is implemented using solely a Spring XML file (there is no custom Java code). The source code is provided in the following XML file src/main/resources/META-INF/spring/camel-context.xml, which can be viewed from github.

This example uses a timer to trigger a message every 5th second that is routed using a content based router, based on the message is regarded as high priority or not.

Building

Navigate to the camel-spring folder and the example can be built with

mvn clean install

Running the example locally

The example can be run locally using the following Maven goal:

mvn exec:java

Running the example in Kubernetes or OpenShift

It is assumed a running Kubernetes platform is already running. If not you can find details how to get started.

mvn fabric8:run

To list all the running pods in Kubernetes type:

kubetl get pods

Or on OpenShift type:

oc get pods

Then find the name of the pod that runs this quickstart, and output the logs from the running pods with:

kubectl logs <name of pod>

You can also use the fabric8 web console to manage the running pods, and view logs and much more.

More details

You can find more details about running this quickstart on the website.