Camel-Netty4 TCP连接配置

时间:2018-03-07 06:50:35

标签: apache-camel netty

我尝试使用camel-netty4在localhost中通过TCP连接时面临连接拒绝异常。

<route id="test-producer">
    <from uri="quartz://{{t1tos.promis.containerupdate.job.detail}}" /> 
    <to uri="bean:haSessionProcessor?method=getHAStatus" />
    <log message="Server Status ::: ${body}"/>
    <to uri="netty4:tcp://localhost:9001??textline=true&amp;sync=true"/>
    <log message="Server Status ::: ${body}"/> 
</route>

<route id="test-consumer">
    <from uri="netty4:tcp://localhost:9001clientMode=true&amp;sync=true&amp;textline=true"/>
    <log message="Invert Server Status ::: ${body}"/>
</route>

请建议解决问题,我无法为此找到一个有效的例子。我是否需要配置主机地址和端口号。

0 个答案:

没有答案