Netty初学踩坑SeverBootstrap和Bootstrap

错误描述no further information: /127.0.0.1:8090

Exception in thread "main" io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /127.0.0.1:8090

解决

看到问题很明显,连接失败?刚开始以为是ip+端口号写错了,检查发现没有错误。
后来才发现server端ServerBootstrap写错成了客户端的BootStrap

new Bootstrap()

修改为:

new ServerBootstrap()

问题原因

SeverBootstrap和Bootstrap都是Netty的启动类,他们的主要作用就是配置相关参数(IP,端口等)并启动整个Netty服务。
ServerBootstrap:用于服务端的启动
Boostrap:用于客户端的启动

你可能感兴趣的:(Netty,netty)