Apache Mina 中的服务器
我在此链接上找到了一些代码 http://www.techbrainwave.com/?p=912 其中描述了如何使用 apache mina 建立客户端服务器架构。然而,在提供的示例中,这只是单向通信(从客户端到服务器)。有谁知道如何修改它以获得双向通信?
I found some code on this link http://www.techbrainwave.com/?p=912 which describes how to set up a client server architecture using apache mina. However, in the example provided it is only one-way communication (from client to server). Does anyone know how to modify this in order to obtain two-way communication?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果希望服务器回复客户端消息,则需要在服务器的 IoHandler 中进行:
If you want the server to reply to the client message, you need to do it in the IoHandler of the server :