Search code examples
spring-integrationspring-integration-dslspring-integration-ip

No publisher available to publish TcpConnectionOpenEvent / TcpConnectionCloseEvent


I configured a TCP Client with the Java DSL of Spring Integration. It looks like this

    @Bean
    public TcpSendingMessageHandler tcpClient()
    {
        return Tcp
            .outboundAdapter(
                Tcp.nioClient("localhost", 9060)
                   .deserializer(new ByteArrayLfSerializer())
                   .soKeepAlive(false)
                   .leaveOpen(false)
                   .taskExecutor(Executors.newSingleThreadExecutor())
                   .get()
            )
            .clientMode(false)
            .get();
    }

And I am using it in a Service to send messages to the TCP socket the client is connected to:

    @Slf4j
    @Service
    public class TcpClientConnectionService
    {
        private final TcpSendingMessageHandler messageHandler;

        @Autowired
        public TcpClientConnectionService(final TcpSendingMessageHandler messageHandler)
        {
            this.messageHandler = messageHandler;
            this.messageHandler.start();
        }

        public void sendMessage(final String message)
        {
            messageHandler.handleMessage(new GenericMessage<>(message));

            log.debug("Message: " + message + " send");
        }
    }

But in production I am getting the follwing warning rather regulary and I do not know what the issue is and how to fix it.

o.s.i.i.tcp.connection.TcpNioConnection : No publisher available to publish TcpConnectionOpenEvent o.s.i.i.tcp.connection.TcpNioConnection : No publisher available to publish TcpConnectionCloseEvent

It would be great if somebody could help me out since I was not able to find anything by googling.


Solution

  • The nested factory is not initialized properly because you are incorrectly calling .get() on the spec, which subverts Spring initialization.

    I configured a TCP Client with the Java DSL of Spring Integration. It looks like this

    @Bean
    public TcpSendingMessageHandler tcpClient()
    {
        return Tcp
            .outboundAdapter(
                Tcp.nioClient("localhost", 9060)
                   .deserializer(new ByteArrayLfSerializer())
                   .soKeepAlive(false)
                   .leaveOpen(false)
                   .taskExecutor(Executors.newSingleThreadExecutor()))
            .clientMode(false)
            .get();
    }
    

    Or move the factory definition to a top level @Bean.