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 2021/02/13 14:07:39 UTC

[camel] 01/02: CAMEL-16192: camel-spring-boot-engine-starter

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

commit 7c126633072352a1bd6982b9406df42544189793
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sat Feb 13 14:31:48 2021 +0100

    CAMEL-16192: camel-spring-boot-engine-starter
---
 .../modules/ROOT/pages/camel-3x-upgrade-guide-3_9.adoc         | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_9.adoc b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_9.adoc
index e759f87..9bbba76 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_9.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_9.adoc
@@ -28,3 +28,13 @@ Users that do not use Spring XML should not be affected.
 
 In Spring XML `<proxy>` and <remote>` have been removed. They were only available in Spring XML
 and not in the other XML DSLs (Blueprint and CDI).
+
+=== camel-spring-boot-starter vs camel-spring-boot-engine-starter
+
+Based on the modularization of camel-spring we have made two starters available when using Camel on Spring Boot
+
+- camel-spring-boot-starter - The regular starter that includes all the core components (similar to camel-core)
+- camel-spring-boot-engine-starter - A minimal starter with just Camel core engine (similar to camel-core-engine)
+
+We also made all the component -starter JARs not depend on any of the above starters, which means you must pick
+the one to use above, and then add which -starter JARs you want to use in your Camel spring boot applications.