You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/03/01 09:20:09 UTC

[camel] branch master updated: CAMEL-14635: Make broker-u-r-l as broker-url in spring boot auto configuration

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 6a1b9fe  CAMEL-14635: Make broker-u-r-l as broker-url in spring boot auto configuration
6a1b9fe is described below

commit 6a1b9fe410f85461a6bf0b6fc1d55b718ecd42e1
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sun Mar 1 10:19:50 2020 +0100

    CAMEL-14635: Make broker-u-r-l as broker-url in spring boot auto configuration
---
 .../modules/ROOT/pages/camel-3x-upgrade-guide.adoc | 41 ++++++++++++++++------
 1 file changed, 30 insertions(+), 11 deletions(-)

diff --git a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide.adoc b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide.adoc
index 664f8ca..a8c4f7c 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide.adoc
@@ -527,17 +527,17 @@ is more consistent and aligned with how endpoints is configured as well, and by
 
 The following Camel components has been affected and changed on the component level:
 
-- aws
-- aws2
-- consul
-- etcd
-- infinispan
-- kafka
-- servicenow
-- ssh
-- stomp
-- xmlsecurity
-- yammer
+- camel-aws
+- camel-aws2
+- camel-consul
+- camel-etcd
+- camel-infinispan
+- camel-kafka
+- camel-servicenow
+- camel-ssh
+- camel-stomp
+- camel-xmlsecurity
+- camel-yammer
 
 This only affects if you are configuring these components using Java code or XML `<bean>` style.
 
@@ -596,3 +596,22 @@ camel.component.kafka.brokers=mybroker1:1234,mybroker2:1234
 ----
 
 This applies to all the Camel spring boot _starter_ JARs where basically `.configuration` should be removed.
+
+=== Configuring camel-activemq, camel-amqp and camel-stomp via Spring Boot auto configuration
+
+When configuring these components from spring boot auto-configuration then the URL for the broker was named `broker-u-r-l`
+in the spring boot auto configuration support. This has been renamed to `broker-url` and a few other options too.
+
+Before:
+
+[source,properties]
+----
+camel.component.activemq.broker-u-r-l=tcp://localhost:61616
+----
+
+After:
+
+[source,properties]
+----
+camel.component.activemq.broker-url=tcp://localhost:61616
+----