Netty写回数据报错unsupported message type: TextWebSocketFrame (expected: ByteBuf, FileRegion)

问题描述

在调用ws请求后,往请求方写回数据发生报错:

DefaultChannelPromise@3404daa6(failure: java.lang.UnsupportedOperationException: unsupported message type: TextWebSocketFrame (expected: ByteBuf, FileRegion))

该问题是由于Netty在创建连接时,会触发channelActive()方法,然后会调用channelRead()方法
创建连接会获取到FullHttpRequest对象,我的代码在channelRead中从url获取了登陆信息,做了权限校验,往客户端写回权限认证结果,触发了报错。
主要代码如下:

// 认证方法
public boolean auth(HttpRequest httpRequest){
	// 具体实现
}
@Override
public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
	FullHttpRequest request = (FullHttpRequest) msg;
    FullHttpRequest copy = request.copy();
	// 接收认证结果
	boolean accept = auth(copy);
	// 返回客户端
	ctx.channel().writeAndFlush(new TextWebSocketFrame("成功"));
	ReferenceCountUtil.release(copy);
}

该问题是由于创建连接时代码逻辑走到channelRead(),还没有完成WebSocketServerProtocolHandler的链接建立,即握手还未完成

解决方法

下面是两种方式:

  1. 不在建立连接时写回数据,认证在建立连接成功后,通过客户端发起认证消息再去处理
  2. 异步处理权限校验
    CompletableFuture.supplyAsync(() -> auth(copy))
    .thenAccept(auth -> {ctx.channel().writeAndFlush(new TextWebSocketFrame("成功")))
    .thenAccept(v -> ReferenceCountUtil.release(copy));
    
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值