@wolf_5fb4 导入netty 依赖的版本不同,很容易有这样的错误
使用下面这个没报错
<!-- https://mvnrepository.com/artifact/io.netty/netty-all -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.32.Final</version>
</dependency>
Netty入门教程2——动手搭建HttpServer上一篇:Netty学习笔记1——认识Netty 在上一章中我们认识了netty,他有三大优点:并发高,传输快,封装好。在这一章我们来用Netty搭建一个HttpServer,...