This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch camel-3.7.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit d3ab64e52cd3d569f6989d14daf81a5ff1c94433 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 64bef77..f96ed0e 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 4f36406..4de6cd1 100644 --- a/components/camel-sql/src/main/docs/sql-component.adoc +++ b/components/camel-sql/src/main/docs/sql-component.adoc @@ -235,8 +235,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.