为了账号安全,请及时绑定邮箱和手机立即绑定

虾哥技术随笔2022-9-8

标签:
Java

深入 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 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消