Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 729DD1775C for ; Tue, 28 Oct 2014 06:20:29 +0000 (UTC) Received: (qmail 74581 invoked by uid 500); 28 Oct 2014 06:20:29 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 74529 invoked by uid 500); 28 Oct 2014 06:20:29 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 74520 invoked by uid 99); 28 Oct 2014 06:20:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Oct 2014 06:20:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Oct 2014 06:20:28 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 32EBD23888D7 for ; Tue, 28 Oct 2014 06:18:38 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r927118 - in /websites/production/camel/content: cache/main.pageCache spring-boot.html Date: Tue, 28 Oct 2014 06:18:38 -0000 To: commits@camel.apache.org From: buildbot@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20141028061838.32EBD23888D7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: buildbot Date: Tue Oct 28 06:18:37 2014 New Revision: 927118 Log: Production update by buildbot for camel Modified: websites/production/camel/content/cache/main.pageCache websites/production/camel/content/spring-boot.html Modified: websites/production/camel/content/cache/main.pageCache ============================================================================== Binary files - no diff available. Modified: websites/production/camel/content/spring-boot.html ============================================================================== --- websites/production/camel/content/spring-boot.html (original) +++ websites/production/camel/content/spring-boot.html Tue Oct 28 06:18:37 2014 @@ -128,7 +128,9 @@ public class MyRouterConfiguration { from("jms:invoices").to("file:/invoices"); } - }; + }; + } +  }]]>

Camel properties

Spring Boot auto-configuration automatically connect Spring Boot external configuration (like properties placeholders, OS environment variables or system properties) with the Camel properties support. It basically means that any property defined in application.properties file:  

@@ -157,7 +159,7 @@ public class MyAppConfig { void beforeStart(CamelContext context) { // your custom configuration goes here } - } + }; } }]]>