Camelを使用してActiveMQからメッセージを取得し、メッセージの内容(protobuf)に基づいて、1つ以上のメッセージをTwitterに送信したいと思います。ルート内から呼び出され、インジェクションを使用して複数のメッセージを「direct:xyz」エンドポイントに送信するBeanを作成しました。
ただし、Camelは実行時に次のように不平を言っています。
2012-11-16 09:56:33,376 | WARN | ication.twitter] | DirectProducer | 160 - org.apache.camel.camel-core - 2.10.2 | No consumers available on endpoint: Endpoint[direct://twitter] to process: Exchange[Message: hello world]
代わりに、Bean内からTwitterエンドポイントに直接注入すると、正常に機能します。ただし、テストを容易にし、構成を簡素化するために、実際のTwitter構成を分離したままにしておきたいので、別のルートに送信したいと思います。
キャメルコンテキスト設定は次のようになります:-
<camelContext id="NotificationTwitter"
trace="false" xmlns="http://camel.apache.org/schema/blueprint">
<dataFormats>
<protobuf id="notificationProto" instanceClass="org.abc.schemas.protobuf.NotificationDef$NotificationMsg" />
</dataFormats>
<route id="TwitterPreparation">
<from uri="activemq:notification.twitter" />
<unmarshal ref="notificationProto" />
<log logName="abc" loggingLevel="INFO"
message="Twitter request received: ${body}" />
<bean ref="NotificationTweeter" method="createTweets" />
</route>
<route id="Twitter">
<from uri="direct:twitter" />
<log logName="abc" loggingLevel="INFO"
message="Tweeting: ${body}" />
<to uri="twitter://timeline/user?consumerKey=itsasecret&consumerSecret=itsasecret&accessToken=itsasecret&accessTokenSecret=itsasecret" />
</route>
</camelContext>
Beanは次のようになります:-
public class NotificationTweeter {
@EndpointInject(uri = "direct:twitter")
private ProducerTemplate producerTemplate;
public void createTweets(NotificationMsg notification) {
String tweet = notification.getMessageDetail().getTitle();
try {
// only send tweets where the notification message contains the Twitter mechanism
for (MechanismMsg mechanism : notification.getMechanismList()) {
if (mechanism.getType() == MechanismTypeEnum.TWITTER) {
// Cycle round the recipients
for (RecipientMsg recipient : mechanism.getRecipientList()) {
tweet = "@" + recipient.getIdentifier() + " " + tweet;
producerTemplate.sendBody(tweet);
}
// TODO exceptions if no recipients found, etc
}
}
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
私は他のルートでこの問題を抱えていましたが(確かにTwitterの機能とは関係ありません)、問題を回避したばかりです。しかし今回は、実際に何が問題なのかを理解したいと思います!感謝の気持ちを込めて、どんな助けも受けました。