Decoder is not a @Sharable handler, so can't be added or removed multiple times
final MyMessageDecoder myMessageDecoder = new MyMessageDecoder();
每次都new 一个不采用final
Decoder is not a @Sharable handler, so can't be added or removed multiple times
final MyMessageDecoder myMessageDecoder = new MyMessageDecoder();
每次都new 一个不采用final
转载于:https://www.cnblogs.com/ffaiss/p/10059560.html