DefaultFullHttpResponse 中获取status
private void sendHttpResponse(ChannelHandlerContext ctx,FullHttpRequest req,DefaultFullHttpResponse res){ if(.code()!=200){ ByteBuf buf = Unpooled.copiedBuffer(res.getStatus().toString(), CharsetUtil.UTF_8); } }
res.getStatus() 会报错 netty版本是5.0.0的 换成低版本是可以的 ,但是方法是过时的方法,在新版本中怎么获取status