继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

虾哥技术随笔2022-9-8

遇见未来的你
关注TA
已关注
手记 8
粉丝 9
获赞 1

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

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP