package com.ard.utils.netty.tcp; import io.netty.channel.ChannelInitializer; import io.netty.channel.socket.SocketChannel; import io.netty.handler.codec.string.StringDecoder; import io.netty.handler.codec.string.StringEncoder; import io.netty.util.CharsetUtil; public class BootNettyChannelInitializer extends ChannelInitializer { @Override protected void initChannel(SocketChannel ch){ //ch.pipeline().addLast("encoder", new StringEncoder(CharsetUtil.UTF_8)); //ch.pipeline().addLast("decoder", new StringDecoder(CharsetUtil.UTF_8)); /** * 自定义ChannelInboundHandlerAdapter */ ch.pipeline().addLast(new BootNettyChannelInboundHandlerAdapter()); } }