服务器模式下的Apache Camel netty4生产者

时间:2018-05-31 11:23:17

标签: apache-camel netty

我在生产者模式下使用Apache Camel netty4组件,端点配置如下:

<from>
    <...>
</from>
<to>
    <endpoint:uriRouteEndpoint uri="netty4:tcp://127.0.0.1:12345"/>
</to>

当有消息要发送netty端点时,此处充当TCP客户端,懒惰地启动与指定套接字的连接。

是否有一个简单的解决方案使其充当TCP服务器,即等待直到TCP连接在发送消息之前由客户端软件启动和建立?

1 个答案:

答案 0 :(得分:0)

当然,Content Enricher EIP肯定可以做到这一点。您可以使用pollEnrich创建等待输入的池消费者。

我已经为演示创建了单元测试。

public class NettyEnrich extends CamelTestSupport {

    @Override
    protected RoutesBuilder createRouteBuilder() throws Exception {
        return new RouteBuilder() {
            @Override
            public void configure() throws Exception {
                from("direct:in")
                        .pollEnrich("netty4:tcp://127.0.0.1:12345")
                        .to("mock:out");
            }
        };
    }

    @Test
    public void test() throws Exception{
        MockEndpoint mockEndpoint = getMockEndpoint("mock:out");
        mockEndpoint.setExpectedCount(1);

        template.asyncSendBody("direct:in",""); //direct:in is now waiting for connection from netty client
        template.sendBody("netty4:tcp://127.0.0.1:12345", "Hello from TCP"); //Initialize connection to resume direct:in

        mockEndpoint.assertIsSatisfied();
        Assert.assertEquals("Hello from TCP", mockEndpoint.getExchanges().get(0).getIn().getBody());
    }
}