1

嘿,我正在活动 mq 中运行一些骆驼路线。每次点击 url 时,都试图将一个 hello world 从 mina 套接字中推出。

from("jetty:http://0.0.0.0:8080/popurl").process(new Processor() {
    @Override
    public void process(Exchange arg0) throws Exception {
        arg0.getOut().setBody("Hello world",String.class);
    }
}).to("mina:tcp://127.0.0.1:9991?timeout=45000&sync=false").process(new Processor() {
    @Override
    public void process(Exchange arg0) throws Exception {
        arg0.getOut().setBody("Hello world");
    }
});

有用。问题出在接收方,而不仅仅是看到
     Hello world
我看到
     ??t
          Hello world

我错过了什么吗?

4

1 回答 1

0

Sorry, found the answer two min's after i asked. Add the textline=true param to the mina uri.

于 2013-05-09T17:08:46.337 回答