Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 0 additions & 88 deletions camel-cics/src/main/docs/component-endpoint-options.adoc

This file was deleted.

4 changes: 1 addition & 3 deletions camel-cics/src/main/docs/starter.adoc
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@

:starter-artifactid: {artifactid}-starter


== Spring Boot Auto-Configuration

When using {shortname} with Spring Boot make sure to use the following Maven dependency to have support for auto configuration:
When using {shortname} with Spring Boot make sure to use the following Maven dependency to have support for auto-configuration:

[source,xml,subs="+attributes"]
----
Expand All @@ -16,7 +15,6 @@ When using {shortname} with Spring Boot make sure to use the following Maven dep
</dependency>
----


The component supports 17 options, which are listed below.

[width="100%",cols="2,5,^1,2",options="header"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ Camel components are configured on two separate levels:

=== Configuring Component Options

At the component level, you set general and shared configurations that are, then, inherited by the endpoints. It is the highest configuration level.
At the component level, you set general and shared configurations that are, then, inherited by the endpoints.
It is the highest configuration level.

For example, a component may have security settings, credentials for authentication, urls for network connection and so forth.

Expand All @@ -25,11 +26,10 @@ You can configure components using:

You usually spend more time setting up endpoints because they have many options.
These options help you customize what you want the endpoint to do.
The options are also categorized into whether the endpoint is used as a consumer (_from_), as a producer (_to_), or both.
The options are also categorized into whether the endpoint is used as a consumer (_from_), as a producer (_to_), or both.

Configuring endpoints is most often done directly in the endpoint URI as _path_ and _query_ parameters.
You can also use the Endpoint DSL and DataFormat DSL
as a _type safe_ way of configuring endpoints and data formats in Java.
You can also use the Endpoint DSL and DataFormat DSL as a _type safe_ way of configuring endpoints and data formats in Java.

A good practice when configuring options is to use Property Placeholders.

Expand Down
Loading