プロパティ値に基づいてキャメル コンテキストまたはルートをグループ化する方法はありますか?
環境を -Denv="preprod" として定義しており、それに基づいてルートとコンテキストをグループ化/決定したいと考えています。例:
開発環境の場合:
<camel:route id="foo" >
<camel:from uri="seda:start"/>
<camel:to uri="mock:result"/>
</camel:route>
本番用:
<camel:route id="foo" >
<camel:from uri="seda:start"/>
<camel:to uri="jmsqueue:result"/>
</camel:route>
Spring Application Context を使用して Camel Context を宣言しています