129130131132133134135136137138
return factory; } @Bean public TcpInboundGateway tcpInboundGateway() { TcpInboundGateway gateway = new TcpInboundGateway(); gateway.setConnectionFactory(tcpNetServerConnectionFactory()); gateway.setRequestChannel(directChannel()); return gateway; }
9899100101102103104105106107
return new TcpNetServerConnectionFactory(9876); } @Bean TcpInboundGateway tcpGate() { TcpInboundGateway gateway = new TcpInboundGateway(); gateway.setConnectionFactory(cf()); gateway.setRequestChannel(requestChannel()); return gateway; }
81828384858687888990