netty源码:(48) ChannelHandlerContext的alloc方法得到的ByteBufAllocator类型是如何确定的?
在DefaultChannelConfig中,而ByteBuffAllocator中定义的DEFAULT如下:ByteBufUtil类中首先获取io.netty.allocator.type(可按下图配置)看是pooled还是unpooled,如果没有,则判断是否是安卓平台,是的话取unpooled,否则取pooled.最终会返回UnpooledByteBufAllocator.DEFAULT或者