karaf で在庫例のルートを実行しています。stream:out を log:test に変更すると、ログに 5 秒ごとにメッセージが表示されるため、機能していることがわかります。ただし、karaf コンソールには何も表示されないようです。camel-stream もインストールしましたが、ログにエラーは表示されません。karaf bin/client を実行すると、stream:out データが表示されるはずですか? ありがとう!
<?xml version="1.0" encoding="UTF-8"?>
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
<camelContext xmlns="http://camel.apache.org/schema/blueprint" id="simple">
<route>
<from uri="timer:simple?period=5000"/>
<setBody>
<simple>Hello World</simple>
</setBody>
<to uri="stream:out"/>
</route>
</camelContext>
</blueprint>
以下に機能情報を追加しました。現在karaf 2.2.9を使用しています。2.3.0で試しました:
karaf@root> features:list | grep stream
[installed ] [2.9.4 ] camel-stream camel-2.9.4
[uninstalled] [2.9.4 ] camel-xstream camel-2.9.4
karaf@root> features:list | grep bluepr
[installed ] [2.9.4 ] camel-blueprint camel-2.9.4
[installed ] [5.7.0 ] activemq-blueprint activemq-5.7.0
karaf@root> ^D
私も次のことを試しました:
service KARAF-service stop
cd /usr/local/karaf
rm -rf data/cache/*
service KARAF-service start
echo "features:install camel-blueprint camel-stream" | bin/client
cp /root/simple-camel-blueprint.xml deploy/ && tail -f data/log/karaf.log
私は得る:
***deleted startup messages***
2012-12-01 14:56:42,166 | INFO | - timer://simple | test | 64 - org.apache.camel.camel-core - 2.9.4 | Exchange[ExchangePattern:InOnly, BodyType:String, Body:Hello World]
2012-12-01 14:56:47,134 | INFO | - timer://simple | test | 64 - org.apache.camel.camel-core - 2.9.4 | Exchange[ExchangePattern:InOnly, BodyType:String, Body:Hello World]
2012-12-01 14:56:52,135 | INFO | - timer://simple | test | 64 - org.apache.camel.camel-core - 2.9.4 | Exchange[ExchangePattern:InOnly, BodyType:String, Body:Hello World]
2012-12-01 14:56:57,135 | INFO | - timer://simple | test | 64 - org.apache.camel.camel-core - 2.9.4 | Exchange[ExchangePattern:InOnly, BodyType:String, Body:Hello World]
2012-12-01 14:57:02,135 | INFO | - timer://simple | test | 64 - org.apache.camel.camel-core - 2.9.4 | Exchange[ExchangePattern:InOnly, BodyType:String, Body:Hello World]
2012-12-01 14:57:07,136 | INFO | - timer://simple | test | 64 - org.apache.camel.camel-core - 2.9.4 | Exchange[ExchangePattern:InOnly, BodyType:String, Body:Hello World]
2012-12-01 14:57:12,135 | INFO | - timer://simple | test | 64 - org.apache.camel.camel-core - 2.9.4 | Exchange[ExchangePattern:InOnly, BodyType:String, Body:Hello World]
2012-12-01 14:57:17,135 | INFO | - timer://simple | test | 64 - org.apache.camel.camel-core - 2.9.4 | Exchange[ExchangePattern:InOnly, BodyType:String, Body:Hello World]
「to uri」を「log:test」から「stream:out」に変更すると、bin/client を実行しても何も得られません。それは有効なコンソール出力テストですか?
これも追加する必要があります:
karaf@root> camel:route-info route3
Camel Route route3
Camel Context: simple
Properties
id = route3
parent = 7fcb9c0a
Statistics
Exchanges Total: 5
Exchanges Completed: 5
Exchanges Failed: 0
Min Processing Time: 1ms
Max Processing Time: 5ms
Mean Processing Time: 1ms
Total Processing Time: 9ms
Last Processing Time: 1ms
Load Avg: 0.00, 0.00, 0.00
First Exchange Date: 2012-12-01 15:08:32
Last Exchange Completed Date: 2012-12-01 15:08:52
Definition
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<route id="route3" xmlns="http://camel.apache.org/schema/spring">
<from uri="timer:simple?period=5000"/>
<setBody id="setBody3">
<simple>Hello World</simple>
</setBody>
<to uri="stream:out" id="to3"/>
</route>