深入 ByteBuf
本节课将深入学习 netty 中的 ByteBuf,并且对比 JAVA NIO 中的 ByteBuffer,以加深对 netty 底层传输缓冲区 ByteBuf 的理解。
知识点
- NIO ByteBuffer 的使用及原理
- ByteBuf 的使用及原理
- ByteBuf 常用功能
- ByteBuf 之引用计数回收
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.shiyanlou</groupId>
<artifactId>netty-hello3</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>netty-hello3</name>
<properties>
<!-- 使用java8的编译器来进行编译 -->
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
<dependencies>
<!-- 引入protobuf依赖 -->
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.6.1</version>
<!-- <version>3.21.5</version>-->
</dependency>
<!-- 引入hessian依赖 -->
<dependency>
<groupId>com.caucho</groupId>
<artifactId>hessian</artifactId>
<!-- <version>4.0.59</version>-->
<version>4.0.66</version>
</dependency>
<!-- 引入netty依赖 -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<!-- <version>4.1.31.Final</version>-->
<version>4.1.80.Final</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<!-- <version>3.8.1</version>-->
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>