gpt4 book ai didi

java - spring 任意消息 TCP 套接字

转载 作者:可可西里 更新时间:2023-11-01 02:33:56 25 4
gpt4 key购买 nike

我正在使用 spring-integration 开发定制的双向 tcp 套接字服务器。

服务器将处理请求/响应任务,但我无法向特定连接 ID 发送任意消息

我也知道也许使用 TcpSendingMessageHandlerTcpReceivingChannelAdapter 是解决方案,但我找不到任何关于如何使用它的示例代码。

这是我的代码:

public class SocketServer {

private Logger logger = LoggerFactory.getLogger(SocketServer.class);

@Bean
public AbstractServerConnectionFactory connectionFactory() {
return new TcpNetServerConnectionFactory(2025);
}

@Bean
public TcpInboundGateway TcpInboundGateway(AbstractServerConnectionFactory connectionFactory) {
TcpInboundGateway inGate = new TcpInboundGateway();
inGate.setConnectionFactory(connectionFactory);
inGate.setRequestChannelName("directChannel");
return inGate;
}

@Bean
public DirectChannel directChannel() {
return new DirectChannel();
}

@MessageEndpoint
public class Echo {

@Transformer(inputChannel = "directChannel")
public String process(byte[] input) throws Exception {
return new String(input).toUpperCase();
}

}

public boolean sendMessage(String connectionId){
//TODO send Message
}
}

最佳答案

给你 - 应该是不言自明的......

@SpringBootApplication
public class So41760289Application {

public static void main(String[] args) throws Exception {
ConfigurableApplicationContext context = SpringApplication.run(So41760289Application.class, args);
Socket socket = SocketFactory.getDefault().createSocket("localhost", 12345);

// request/reply
socket.getOutputStream().write("foo\r\n".getBytes());
BufferedReader reader = new BufferedReader(new InputStreamReader(socket.getInputStream()));
System.out.println(reader.readLine());

// arbitrary send
@SuppressWarnings("unchecked")
Set<String> connections = context.getBean(Set.class);
for (String connection : connections) {
context.getBean("bar", MessageChannel.class).send(
MessageBuilder.withPayload("foo")
.setHeader(IpHeaders.CONNECTION_ID, connection)
.build());
}
System.out.println(reader.readLine());
reader.close();
context.close();
}

@Bean
public TcpNetServerConnectionFactory cf() {
return new TcpNetServerConnectionFactory(12345);
}

@Bean
public TcpReceivingChannelAdapter receiver() {
TcpReceivingChannelAdapter adapter = new TcpReceivingChannelAdapter();
adapter.setConnectionFactory(cf());
adapter.setOutputChannelName("foo");
return adapter;
}

@Transformer(inputChannel = "foo", outputChannel = "bar")
public String process(byte[] in) {
return new String(in).toUpperCase();
}

@Bean
@ServiceActivator(inputChannel = "bar")
public TcpSendingMessageHandler sender() {
TcpSendingMessageHandler handler = new TcpSendingMessageHandler();
handler.setConnectionFactory(cf());
return handler;
}

@Bean
public Set<String> connections() {
return Collections.synchronizedSet(new HashSet<>());
}

@Bean
public ApplicationListener<TcpConnectionEvent> listener() {
return new ApplicationListener<TcpConnectionEvent>() {

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

};
}

}

关于java - spring 任意消息 TCP 套接字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41760289/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com