码迷,mamicode.com
首页 > 其他好文 > 详细

is not a @Sharable handler解决方法

时间:2020-06-15 19:22:53      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:wired   handle   enc   vat   str   except   red   直接   spring   

is not a @Sharable handler解决方法

 

昨天在写编码器的时候,因为是和spring整合,因此在使用编码的时候用Autowired自动注入

@Autowired
private ProtocolDecoder protocolDecoder ;

@Autowired
private ProtocolEncoder protocolEncoder;

结果在多个客户端连接(其实不是多客户端的问题)的时候导致一直在报错,如下

io.netty.channel.ChannelPipelineException: com.mzj.ProtocolDecoder is not a @Sharable handler, so can‘t be added or removed multiple times.

于是我就自作聪明的将ProtocolDecoder上加了个@Sharable注解,结果在启动的时候就报错了。

Caused by: java.lang.IllegalStateException: ChannelHandler com.mzj.ProtocolDecoder is not allowed to be shared

最后的解决方法是,不要使用单例了,每次添加handler的时候直接new

        pipeline.addLast("decoder",new ProtocolDecoder() );
        pipeline.addLast("encoder",new ProtocolEncoder()) ;

当然如果是在ChannelInitializer的子类报错说is not a @Sharable handler,一般情况加上@Sharable注解即可

 

is not a @Sharable handler解决方法

标签:wired   handle   enc   vat   str   except   red   直接   spring   

原文地址:https://www.cnblogs.com/muzhongjiang/p/13135515.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!