2017-07-13 7 views
0

http://camel.apache.org/activemq.htmlActiveMQコンポーネントはスプリング設定なしで接続プールをどのように使用できますか?

この記事では、春のコンフィグレーションで接続プールを使用する方法のみを説明します。

この方法で接続プールを使用できるのだろうか?

このように、すべてのコンテンツはJavaコードで記述されているため、実行時にSpringの設定を変更することなくコンポーネントを簡単に追加または削除できます。単にこのような

答えて

1

ActiveMQComponent answer = ActiveMQComponent.activeMQComponent(); 
ActiveMQConnectionFactory jmsConnectionFactory = new ActiveMQConnectionFactory("tcp://localhost:61616"); 
PooledConnectionFactory pooledConnectionFactory = new PooledConnectionFactory(jmsConnectionFactory); 
((ActiveMQConfiguration) answer.getConfiguration()).setConnectionFactory(pooledConnectionFactory); 
context.addComponent("activemq", answer); 
関連する問題