需求场景:
智能家居网关(以下简称gateway),需要和netty服务器通讯(以下简称netty),netty和gateway之间需要保持长连接(换句话说,netty和gateway之间都会主动给对方发送消息)
碰到的问题:
netty作为服务器端如何主动的向gateway发送消息,我尝试当每个gateway连接到netty(TCP/IP)时使用一个map把该channelSocket的id和该channelSocket绑定在一起
@Override
public void channelActive(ChannelHandlerContext ctx) throws Exception {
String uuid = ctx.channel().id().asLongText();
GatewayService.addGatewayChannel(uuid, (SocketChannel)ctx.channel());
System.out.println("a new connect come in: " + uuid);
}
GatewayService其实就是一个ConcurrentHashMap
public class GatewayService {
private static Map<String, SocketChannel> map = new ConcurrentHashMap<>();
public static void addGatewayChannel(String id, SocketChannel gateway_channel){
map.put(id, gateway_channel);
}
public static Map<String, SocketChannel> getChannels(){
return map;
}
public static SocketChannel getGatewayChannel(String id){
return map.get(id);
}
public static void removeGatewayChannel(String id){
map.remove(id);
}
}
我在服务器端尝试每间隔一段时间loop这个ConcurrentHashMap如果里面已经有绑定的channelSocket,就使用write方法向客户端发送消息
Runnable sendTask = new Runnable() {
@Override
public void run() {
sendTaskLoop:
for(;;){
System.out.println("task is beginning...");
try{
Map<String, SocketChannel> map = GatewayService.getChannels();
Iterator<String> it = map.keySet().iterator();
while (it.hasNext()) {
String key = it.next();
SocketChannel obj = map.get(key);
System.out.println("channel id is: " + key);
System.out.println("channel: " + obj.isActive());
obj.writeAndFlush("hello, it is Server test header ping");
}
}catch(Exception e){break sendTaskLoop;}
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
};
new Thread(sendTask).start();
理论上客户端应该是可以接受到我发送的消息,但是我观察了一下源代码,发现writeAndFlush这个方法最终会被handler触发,于是我又在handler中覆写了write方法
@Override
public void write(ChannelHandlerContext ctx, Object msg, ChannelPromise promise) throws Exception {
System.out.println("write handler");
ctx.writeAndFlush(msg);
}
可是最终结果客户端并没有收到任何消息,请问netty如何主动向客户端发送消息?
可以大概猜測到是服務端沒有編碼器,因此根本發不出去
從貼出的代碼裡可以看到代碼裡往客戶端發訊息時有兩種方式:
和
在netty裡,進出的都是
ByteBuf
,楼主应确定服务端是否有对应的编码器,将字符串转化为ByteBuf
。GatewayService這裡儲存channel的時候不需要強制轉換成SocketChannel類型,
拿到channel做writeAndFlush是沒有問題的。
為了進一步排查問題,可以這麼做,
1.對ctx.writeAndFlush(msg);的Promise結果做監聽,比如
2.注意客戶端和服務端兩邊的編碼器和解碼器是否相同
推薦使用ChannelGroup管理客戶端。領導伺服器端推送不出去可能是因為沒有編碼器的原因,ctx.writeAndFlush是不能直接寫字串類型的。
你好,你的程式碼可以這樣修改:
Handler的程式碼修改如下:
@Override
GatewayService:
public class GatewayService {
}
遍歷客戶端的程式碼如下:
public class TimeTask implements Runnable{
// obj.writeAndFlush("hello, it is Server test header ping");
}
這樣就可以了。本人親測,可以