深入 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>
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦