Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Moved examples higher in the document

...

When using the DSL to create Routes you typically refer to Message Endpoints by their URIs rather than directly using the Endpoint interface. Its then a responsibility of the CamelContext to create and activate the necessary Endpoint instances using the available Component implementations.

For more details see

Example

The following example route demonstrates the use of a File Consumer Endpoint and JMS Producer Endpoint

...

Code Block
languagexml
<route>
	<from uri="file://local/router/messages/foo"/>
	<to uri="jms:queue:foo"/>
</route>

 

For more details see

Include Page
Using This Pattern
Using This Pattern