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
- Host: GitHub
- URL: https://github.com/isnott/netty-learning
- Owner: IsNott
- Created: 2024-07-24T11:46:24.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-11-29T07:48:00.000Z (6 months ago)
- Last Synced: 2025-02-10T04:29:12.614Z (4 months ago)
- Topics: netty4, socket-programming
- Language: Java
- Homepage:
- Size: 66.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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)