キャメルとの敗走に問題があります。これは私の構成ファイルで、非常に単純です。
<bean id="activemq" class="org.apache.activemq.camel.component.ActiveMQComponent">
<property name="brokerURL" value="tcp://10.211.55.20:5672"/>
</bean>
<camel:camelContext xmlns="http://camel.apache.org/schema/spring">
<jmxAgent id="agent" createConnector="false" disabled="true"/>
<camel:route>
<route>
<from uri="activemq:hello?destination.consumer.exclusive=true&destination.consumer.prefetchSize=50"/>
<to uri="stream:out"/>
</route>
</camel:route>
</camel:camelContext>
この場合、RabbitMQ を使用しており、hello はキュー名です。
実行すると、次のエラー メッセージが表示されます。
Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: Route has no inputs: Route[[] -> [Route[[From[activemq:hello?destination.consumer.exclusive=true&destination.consumer.prefetchSize=50]] -> [To[stream:out]]]]]
何か案が?Camel + RabbitMQ のサンプルまたはチュートリアルはどこで入手できますか?
- - 更新しました - -
以下のコメントの提案に従って、構成を修正し、少し前進しました。これでキューに接続できるようになりましたが、書き込もうとすると「camelContextを指定する必要があります」という例外が発生します
<bean id="messageConverter" class="amqp.spring.converter.XStreamConverter"/>
<rabbit:connection-factory id="connectionFactory" host="10.211.55.20" port="5672" />
<rabbit:template id="amqpTemplate" connection-factory="connectionFactory" message-converter="messageConverter" exchange="amq.fanout" />
<rabbit:admin connection-factory="connectionFactory"/>
<rabbit:queue name="hello" />
<camel:camelContext xmlns="http://camel.apache.org/schema/spring">
<camel:route>
<camel:from uri="file:src/data?noop=true" />
<camel:log message="Log!"/>
<camel:to uri="spring-amqp:amq.fanout:hello"/>
</camel:route>
</camel:camelContext>
ありがとう、
アンドレア