Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Excerpt

Starting point for a Camel Route

. Start

that starts a route with a given Endpoint

. The Endpoint can be from one of the many Camel Components. The component creates Camel Exchanges from their respective Sources and puts them into the route.

Syntax

Java

  • from(String uri)

Parameters

Parameter

Description

uri

URI describing a Camel Endpoint

...

  • from(Endpoint

...

  • endPoint)

Parameters

Parameter

Description

uri

URI describing a Camel Endpoin

Spring XML

<from uri="" ref=""/>

Parameters

Parameter

Type

Description

uri

String

URI describing a Camel Endpoint

endpoint

Endpoint

a Camel Endpoint

...

ref

Bean

Reference to an Endpoint bean definition

Examples

Start a route with the File Endpoint. Each file in the directory creates an Exchange that is put into the camel route.

...