An open API service indexing awesome lists of open source software.

https://github.com/isnott/netty-learning

记录学习Netty的项目,基于Netty4.x,实现基本的server-client模型、在线聊天等demo
https://github.com/isnott/netty-learning

netty4 socket-programming

Last synced: about 2 months ago
JSON representation

记录学习Netty的项目,基于Netty4.x,实现基本的server-client模型、在线聊天等demo

Awesome Lists containing this project

README

        

# 基于Netty网络框架的学习记录

Netty学习记录,使用Netty实现基本sever-client模型等demo。

# Version 依赖版本

| | version |
|---------------|---------------|
| Netty | 4.1.110.Final |
| ProtoBuf Java | 4.28.3 |

# module 模块

| name | |
|----------------|----------------------------------------|
| netty-base | 跟随入门教程的demo |
| netty-chat | 基于Netty实现的聊天室demo(Sockect + WebSocket) |
| netty-protobuf | 基于Netty+ Protobuf 传输对象 demo |
| netty-grpc | 基于Netty的grpc调用 demo |

# reference 参考

[Netty文档](https://netty.io/4.0/api/overview-summary.html)

[Netty官网](https://netty.io/)

[Netty 4.x 用户指南](https://github.com/waylau/netty-4-user-guide/)

[Netty 实战(精髓)](https://github.com/waylau/essential-netty-in-action)

[Google Protobuf与Netty结合](https://www.cnblogs.com/rainbowsea1/p/12983546.html)