Author: buildbot Date: Sun Jun 3 09:20:46 2012 New Revision: 820074 Log: Production update by buildbot for camel
Modified: websites/production/camel/content/book-component-appendix.html websites/production/camel/content/book-in-one-page.html websites/production/camel/content/cache/main.pageCache websites/production/camel/content/properties.html websites/production/camel/content/using-propertyplaceholder.html Modified: websites/production/camel/content/book-component-appendix.html ============================================================================== --- websites/production/camel/content/book-component-appendix.html (original) +++ websites/production/camel/content/book-component-appendix.html Sun Jun 3 09:20:46 2012 @@ -13109,6 +13109,8 @@ properties:key[?options] <p>Camel now provides a new <tt>PropertiesComponent</tt> in <b>camel-core</b> which allows you to use property placeholders when defining Camel <a shape="rect" href="endpoint.html" title="Endpoint">Endpoint</a> URIs. <br clear="none"> This works much like you would do if using Spring's <tt><property-placeholder></tt> tag. However Spring have a limitation which prevents 3rd party frameworks to leverage Spring property placeholders to the fullest. See more at <a shape="rect" href="how-do-i-use-spring-property-placeholder-with-camel-xml.html" title="How do I use Spring Property Placeholder with Camel XML">How do I use Spring Property Placeholder with Camel XML</a>.</p> +<div class="panelMacro"><table class="tipMacro"><colgroup span="1"><col span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" valign="top"><img align="middle" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1"><b>Bridging Spring and Camel property placeholders</b><br clear="none">From Camel 2.10 onwards, you can bridge the Spring property placeholder with Camel, see further below for more details.</td></tr></table></div> + <p>The property placeholder is generally in use when doing:</p> <ul class="alternate" type="square"><li>lookup or creating endpoints</li><li>lookup of beans in the <a shape="rect" href="registry.html" title="Registry">Registry</a></li><li>additional supported in Spring XML (see below in examples)</li><li>using Blueprint PropertyPlaceholder with Camel <a shape="rect" href="properties.html" title="Properties">Properties</a> component</li></ul> @@ -13533,6 +13535,19 @@ location=<span class="code-quote">"bluep <p>Each location is separated by comma.</p> +<h3><a shape="rect" name="BookComponentAppendix-BridgingSpringandCamelpropertyplaceholders"></a>Bridging Spring and Camel property placeholders</h3> +<p><b>Available as of Camel 2.10</b></p> + +<p>The Spring Framework does not allow 3rd party frameworks such as Apache Camel to seamless hook into the Spring property placeholder mechanism. However you can easily bridge Spring and Camel by declaring a Spring bean with the type <tt>org.apache.camel.spring.CamelSpringPropertyPlaceholderConfigurer</tt>, which is a Spring <tt>org.springframework.beans.factory.config.PropertyPlaceholderConfigurer</tt> type. </p> + +<p>To bridge Spring and Camel you must define a single bean as shown below:<br clear="none"> +TODO: e1</p> + +<p>You <b>must</b> not use the spring <context:property-placeholder> namespace at the same time; this is not possible.</p> + +<p>After declaring this bean, you can define property placeholders using both the Spring style, and the Camel style within the <camelContext> tag as shown below:<br clear="none"> +TODO: e2</p> + Modified: websites/production/camel/content/book-in-one-page.html ============================================================================== --- websites/production/camel/content/book-in-one-page.html (original) +++ websites/production/camel/content/book-in-one-page.html Sun Jun 3 09:20:46 2012 @@ -33518,6 +33518,8 @@ properties:key[?options] <p>Camel now provides a new <tt>PropertiesComponent</tt> in <b>camel-core</b> which allows you to use property placeholders when defining Camel <a shape="rect" href="endpoint.html" title="Endpoint">Endpoint</a> URIs. <br clear="none"> This works much like you would do if using Spring's <tt><property-placeholder></tt> tag. However Spring have a limitation which prevents 3rd party frameworks to leverage Spring property placeholders to the fullest. See more at <a shape="rect" href="how-do-i-use-spring-property-placeholder-with-camel-xml.html" title="How do I use Spring Property Placeholder with Camel XML">How do I use Spring Property Placeholder with Camel XML</a>.</p> +<div class="panelMacro"><table class="tipMacro"><colgroup span="1"><col span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" valign="top"><img align="middle" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1"><b>Bridging Spring and Camel property placeholders</b><br clear="none">From Camel 2.10 onwards, you can bridge the Spring property placeholder with Camel, see further below for more details.</td></tr></table></div> + <p>The property placeholder is generally in use when doing:</p> <ul class="alternate" type="square"><li>lookup or creating endpoints</li><li>lookup of beans in the <a shape="rect" href="registry.html" title="Registry">Registry</a></li><li>additional supported in Spring XML (see below in examples)</li><li>using Blueprint PropertyPlaceholder with Camel <a shape="rect" href="properties.html" title="Properties">Properties</a> component</li></ul> @@ -33942,6 +33944,19 @@ location=<span class="code-quote">"bluep <p>Each location is separated by comma.</p> +<h3><a shape="rect" name="BookInOnePage-BridgingSpringandCamelpropertyplaceholders"></a>Bridging Spring and Camel property placeholders</h3> +<p><b>Available as of Camel 2.10</b></p> + +<p>The Spring Framework does not allow 3rd party frameworks such as Apache Camel to seamless hook into the Spring property placeholder mechanism. However you can easily bridge Spring and Camel by declaring a Spring bean with the type <tt>org.apache.camel.spring.CamelSpringPropertyPlaceholderConfigurer</tt>, which is a Spring <tt>org.springframework.beans.factory.config.PropertyPlaceholderConfigurer</tt> type. </p> + +<p>To bridge Spring and Camel you must define a single bean as shown below:<br clear="none"> +TODO: e1</p> + +<p>You <b>must</b> not use the spring <context:property-placeholder> namespace at the same time; this is not possible.</p> + +<p>After declaring this bean, you can define property placeholders using both the Spring style, and the Camel style within the <camelContext> tag as shown below:<br clear="none"> +TODO: e2</p> + Modified: websites/production/camel/content/cache/main.pageCache ============================================================================== Binary files - no diff available. Modified: websites/production/camel/content/properties.html ============================================================================== --- websites/production/camel/content/properties.html (original) +++ websites/production/camel/content/properties.html Sun Jun 3 09:20:46 2012 @@ -102,6 +102,8 @@ properties:key[?options] <p>Camel now provides a new <tt>PropertiesComponent</tt> in <b>camel-core</b> which allows you to use property placeholders when defining Camel <a shape="rect" href="endpoint.html" title="Endpoint">Endpoint</a> URIs. <br clear="none"> This works much like you would do if using Spring's <tt><property-placeholder></tt> tag. However Spring have a limitation which prevents 3rd party frameworks to leverage Spring property placeholders to the fullest. See more at <a shape="rect" href="how-do-i-use-spring-property-placeholder-with-camel-xml.html" title="How do I use Spring Property Placeholder with Camel XML">How do I use Spring Property Placeholder with Camel XML</a>.</p> +<div class="panelMacro"><table class="tipMacro"><colgroup span="1"><col span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" valign="top"><img align="middle" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1"><b>Bridging Spring and Camel property placeholders</b><br clear="none">From Camel 2.10 onwards, you can bridge the Spring property placeholder with Camel, see further below for more details.</td></tr></table></div> + <p>The property placeholder is generally in use when doing:</p> <ul class="alternate" type="square"><li>lookup or creating endpoints</li><li>lookup of beans in the <a shape="rect" href="registry.html" title="Registry">Registry</a></li><li>additional supported in Spring XML (see below in examples)</li><li>using Blueprint PropertyPlaceholder with Camel <a shape="rect" href="properties.html" title="Properties">Properties</a> component</li></ul> @@ -526,6 +528,19 @@ location=<span class="code-quote">"bluep <p>Each location is separated by comma.</p> +<h3><a shape="rect" name="Properties-BridgingSpringandCamelpropertyplaceholders"></a>Bridging Spring and Camel property placeholders</h3> +<p><b>Available as of Camel 2.10</b></p> + +<p>The Spring Framework does not allow 3rd party frameworks such as Apache Camel to seamless hook into the Spring property placeholder mechanism. However you can easily bridge Spring and Camel by declaring a Spring bean with the type <tt>org.apache.camel.spring.CamelSpringPropertyPlaceholderConfigurer</tt>, which is a Spring <tt>org.springframework.beans.factory.config.PropertyPlaceholderConfigurer</tt> type. </p> + +<p>To bridge Spring and Camel you must define a single bean as shown below:<br clear="none"> +TODO: e1</p> + +<p>You <b>must</b> not use the spring <context:property-placeholder> namespace at the same time; this is not possible.</p> + +<p>After declaring this bean, you can define property placeholders using both the Spring style, and the Camel style within the <camelContext> tag as shown below:<br clear="none"> +TODO: e2</p> + Modified: websites/production/camel/content/using-propertyplaceholder.html ============================================================================== --- websites/production/camel/content/using-propertyplaceholder.html (original) +++ websites/production/camel/content/using-propertyplaceholder.html Sun Jun 3 09:20:46 2012 @@ -81,6 +81,8 @@ <p>Camel now provides a new <tt>PropertiesComponent</tt> in <b>camel-core</b> which allows you to use property placeholders when defining Camel <a shape="rect" href="endpoint.html" title="Endpoint">Endpoint</a> URIs. <br clear="none"> This works much like you would do if using Spring's <tt><property-placeholder></tt> tag. However Spring have a limitation which prevents 3rd party frameworks to leverage Spring property placeholders to the fullest. See more at <a shape="rect" href="how-do-i-use-spring-property-placeholder-with-camel-xml.html" title="How do I use Spring Property Placeholder with Camel XML">How do I use Spring Property Placeholder with Camel XML</a>.</p> +<div class="panelMacro"><table class="tipMacro"><colgroup span="1"><col span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" valign="top"><img align="middle" src="https://cwiki.apache.org/confluence/images/icons/emoticons/check.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1"><b>Bridging Spring and Camel property placeholders</b><br clear="none">From Camel 2.10 onwards, you can bridge the Spring property placeholder with Camel, see further below for more details.</td></tr></table></div> + <p>The property placeholder is generally in use when doing:</p> <ul class="alternate" type="square"><li>lookup or creating endpoints</li><li>lookup of beans in the <a shape="rect" href="registry.html" title="Registry">Registry</a></li><li>additional supported in Spring XML (see below in examples)</li><li>using Blueprint PropertyPlaceholder with Camel <a shape="rect" href="properties.html" title="Properties">Properties</a> component</li></ul> @@ -505,6 +507,19 @@ location=<span class="code-quote">"bluep <p>Each location is separated by comma.</p> +<h3><a shape="rect" name="UsingPropertyPlaceholder-BridgingSpringandCamelpropertyplaceholders"></a>Bridging Spring and Camel property placeholders</h3> +<p><b>Available as of Camel 2.10</b></p> + +<p>The Spring Framework does not allow 3rd party frameworks such as Apache Camel to seamless hook into the Spring property placeholder mechanism. However you can easily bridge Spring and Camel by declaring a Spring bean with the type <tt>org.apache.camel.spring.CamelSpringPropertyPlaceholderConfigurer</tt>, which is a Spring <tt>org.springframework.beans.factory.config.PropertyPlaceholderConfigurer</tt> type. </p> + +<p>To bridge Spring and Camel you must define a single bean as shown below:<br clear="none"> +TODO: e1</p> + +<p>You <b>must</b> not use the spring <context:property-placeholder> namespace at the same time; this is not possible.</p> + +<p>After declaring this bean, you can define property placeholders using both the Spring style, and the Camel style within the <camelContext> tag as shown below:<br clear="none"> +TODO: e2</p> + </div> </td>