Spring Integration TCP,向不同的客户端发送不同的消息

问题描述

我想把指定的数据发送给指定的客户端,但是每次连接的时候客户端ID都变了,怎么办?

@Component
public class TcpMessageListener implements ApplicationListener<TcpConnectionEvent> {
    public final Set<String> connectionIds;
    public TcpMessageListener(Set<String> connectionIds){
        this.connectionIds = connectionIds;
    }

    @Override
    public void onApplicationEvent(TcpConnectionEvent event) {
        if(event instanceof TcpConnectionopenEvent){
            connectionIds.add(event.getConnectionId());
        }else if(event instanceof TcpConnectionCloseEvent){
            connectionIds.remove(event.getConnectionId());
        }
    }
}

我可以向指定的 IP 地址发送消息吗

@Component
public class TcpserverHandler {
    @Autowired
    private TcpMessageListener tcpMessageListener;
    @Autowired
    private MessageChannel tcpOutputChannel;

    public void send(String type,String url) {
        TcpDto tcpDto = new TcpDto(type,url);
//        TcpDto tcpDto = new TcpDto("update-backgroud","http://xxx.xxxx.xx");
        try {
            String msg = new ObjectMapper().writeValueAsstring(tcpDto);

            Set<String> connections = tcpMessageListener.connectionIds;
            for (String connectionId : connections) {
                Message<String> message = MessageBuilder.withPayload(msg)
                        .setHeader(IpHeaders.CONNECTION_ID,connectionId)
                        .build();
                tcpOutputChannel.send(message);
            }
        } catch (JsonProcessingException e) {
            log.error(e);
        }
    }
}

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...