You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bu...@apache.org on 2012/08/22 11:20:22 UTC

svn commit: r829666 - in /websites/production/camel/content: activemq.html book-component-appendix.html book-in-one-page.html cache/main.pageCache

Author: buildbot
Date: Wed Aug 22 09:20:21 2012
New Revision: 829666

Log:
Production update by buildbot for camel

Modified:
    websites/production/camel/content/activemq.html
    websites/production/camel/content/book-component-appendix.html
    websites/production/camel/content/book-in-one-page.html
    websites/production/camel/content/cache/main.pageCache

Modified: websites/production/camel/content/activemq.html
==============================================================================
--- websites/production/camel/content/activemq.html (original)
+++ websites/production/camel/content/activemq.html Wed Aug 22 09:20:21 2012
@@ -180,7 +180,7 @@ camelContext.addComponent(<span class="c
 <span class="code-tag">&lt;/bean&gt;</span>
 
 &lt;bean id=<span class="code-quote">"pooledConnectionFactory"</span> 
-   class=<span class="code-quote">"org.apache.activemq.pool.PooledConnectionFactory"</span>&gt;
+   class=<span class="code-quote">"org.apache.activemq.pool.PooledConnectionFactory"</span> init-method=<span class="code-quote">"start"</span> destroy-method=<span class="code-quote">"stop"</span>&gt;
    <span class="code-tag">&lt;property name=<span class="code-quote">"maxConnections"</span> value=<span class="code-quote">"8"</span> /&gt;</span>
    <span class="code-tag">&lt;property name=<span class="code-quote">"maximumActive"</span> value=<span class="code-quote">"500"</span> /&gt;</span>
    <span class="code-tag">&lt;property name=<span class="code-quote">"connectionFactory"</span> ref=<span class="code-quote">"jmsConnectionFactory"</span> /&gt;</span>
@@ -200,6 +200,8 @@ camelContext.addComponent(<span class="c
 </pre>
 </div></div>
 
+<div class="panelMacro"><table class="noteMacro"><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/warning.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1">Notice the <b>init</b> and <b>destroy</b> methods on the pooled connection factory. This is important to ensure the connection pool is properly started and shutdown.</td></tr></table></div>
+
 <h3><a shape="rect" name="ActiveMQ-InvokingMessageListenerPOJOsinaCamelroute"></a>Invoking MessageListener POJOs in a Camel route</h3>
 
 <p>The ActiveMQ component also provides a helper <a shape="rect" href="type-converter.html" title="Type Converter">Type Converter</a> from a JMS MessageListener to a <a shape="rect" href="processor.html" title="Processor">Processor</a>. This means that the <a shape="rect" href="bean.html" title="Bean">Bean</a> component is capable of invoking any JMS MessageListener bean directly inside any route.</p>

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 Wed Aug 22 09:20:21 2012
@@ -184,7 +184,7 @@ camelContext.addComponent(<span class="c
 <span class="code-tag">&lt;/bean&gt;</span>
 
 &lt;bean id=<span class="code-quote">"pooledConnectionFactory"</span> 
-   class=<span class="code-quote">"org.apache.activemq.pool.PooledConnectionFactory"</span>&gt;
+   class=<span class="code-quote">"org.apache.activemq.pool.PooledConnectionFactory"</span> init-method=<span class="code-quote">"start"</span> destroy-method=<span class="code-quote">"stop"</span>&gt;
    <span class="code-tag">&lt;property name=<span class="code-quote">"maxConnections"</span> value=<span class="code-quote">"8"</span> /&gt;</span>
    <span class="code-tag">&lt;property name=<span class="code-quote">"maximumActive"</span> value=<span class="code-quote">"500"</span> /&gt;</span>
    <span class="code-tag">&lt;property name=<span class="code-quote">"connectionFactory"</span> ref=<span class="code-quote">"jmsConnectionFactory"</span> /&gt;</span>
@@ -204,6 +204,8 @@ camelContext.addComponent(<span class="c
 </pre>
 </div></div>
 
+<div class="panelMacro"><table class="noteMacro"><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/warning.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1">Notice the <b>init</b> and <b>destroy</b> methods on the pooled connection factory. This is important to ensure the connection pool is properly started and shutdown.</td></tr></table></div>
+
 <h3><a shape="rect" name="BookComponentAppendix-InvokingMessageListenerPOJOsinaCamelroute"></a>Invoking MessageListener POJOs in a Camel route</h3>
 
 <p>The ActiveMQ component also provides a helper <a shape="rect" href="type-converter.html" title="Type Converter">Type Converter</a> from a JMS MessageListener to a <a shape="rect" href="processor.html" title="Processor">Processor</a>. This means that the <a shape="rect" href="bean.html" title="Bean">Bean</a> component is capable of invoking any JMS MessageListener bean directly inside any route.</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 Wed Aug 22 09:20:21 2012
@@ -20777,7 +20777,7 @@ camelContext.addComponent(<span class="c
 <span class="code-tag">&lt;/bean&gt;</span>
 
 &lt;bean id=<span class="code-quote">"pooledConnectionFactory"</span> 
-   class=<span class="code-quote">"org.apache.activemq.pool.PooledConnectionFactory"</span>&gt;
+   class=<span class="code-quote">"org.apache.activemq.pool.PooledConnectionFactory"</span> init-method=<span class="code-quote">"start"</span> destroy-method=<span class="code-quote">"stop"</span>&gt;
    <span class="code-tag">&lt;property name=<span class="code-quote">"maxConnections"</span> value=<span class="code-quote">"8"</span> /&gt;</span>
    <span class="code-tag">&lt;property name=<span class="code-quote">"maximumActive"</span> value=<span class="code-quote">"500"</span> /&gt;</span>
    <span class="code-tag">&lt;property name=<span class="code-quote">"connectionFactory"</span> ref=<span class="code-quote">"jmsConnectionFactory"</span> /&gt;</span>
@@ -20797,6 +20797,8 @@ camelContext.addComponent(<span class="c
 </pre>
 </div></div>
 
+<div class="panelMacro"><table class="noteMacro"><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/warning.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1">Notice the <b>init</b> and <b>destroy</b> methods on the pooled connection factory. This is important to ensure the connection pool is properly started and shutdown.</td></tr></table></div>
+
 <h3><a shape="rect" name="BookInOnePage-InvokingMessageListenerPOJOsinaCamelroute"></a>Invoking MessageListener POJOs in a Camel route</h3>
 
 <p>The ActiveMQ component also provides a helper <a shape="rect" href="type-converter.html" title="Type Converter">Type Converter</a> from a JMS MessageListener to a <a shape="rect" href="processor.html" title="Processor">Processor</a>. This means that the <a shape="rect" href="bean.html" title="Bean">Bean</a> component is capable of invoking any JMS MessageListener bean directly inside any route.</p>

Modified: websites/production/camel/content/cache/main.pageCache
==============================================================================
Binary files - no diff available.