This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch camel-3.11.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit fbee8f5f5fe75e7cbc6c1ddd7b5ce707a22d92d9 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Tue Aug 17 10:48:57 2021 +0200 Polish and cleanup documentation --- components/camel-spring/src/main/docs/spring-summary.adoc | 3 +-- components/camel-sql/src/main/docs/sql-component.adoc | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/components/camel-spring/src/main/docs/spring-summary.adoc b/components/camel-spring/src/main/docs/spring-summary.adoc index fa93d8e..f56472d 100644 --- a/components/camel-spring/src/main/docs/spring-summary.adoc +++ b/components/camel-spring/src/main/docs/spring-summary.adoc @@ -215,8 +215,7 @@ above in the `<packageScan>` documentation. == How do I import routes from other XML files -When defining routes in Camel using xref:manual::xml-configuration.adoc[Xml -Configuration] you may want to define some routes in other XML files. +When defining routes in Camel using Spring XML you may want to define some routes in other XML files. For example you may have many routes and it may help to maintain the application if some of the routes are in separate XML files. You may also want to store common and reusable routes in other XML files, which diff --git a/components/camel-sql/src/main/docs/sql-component.adoc b/components/camel-sql/src/main/docs/sql-component.adoc index 58bbb1e..02b2bf8 100644 --- a/components/camel-sql/src/main/docs/sql-component.adoc +++ b/components/camel-sql/src/main/docs/sql-component.adoc @@ -233,8 +233,8 @@ You can use the option `useMessageBodyForSql` that allows to use the message body as the SQL statement, and then the SQL parameters must be provided in a header with the key `SqlConstants.SQL_PARAMETERS`. This allows the SQL component to work -more dynamically as the SQL query is from the message body. Use -xref:manual::templating.adoc[Camel templating] +more dynamically as the SQL query is from the message body. Use templating +(such as xref:components::velocity-component.adoc[Velocity], xref:components::freemarker-component.adoc[Freemarker]) for conditional processing, e.g. to include or exclude `where` clauses depending on the presence of query parameters.