Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/haohaodayouxi/springboot_netty
springboot + netty的一个demo实现网络协议自定义解析,可以实现多种网络请求
https://github.com/haohaodayouxi/springboot_netty
netty netty-client netty-server spring spring-boot springboot
Last synced: 20 days ago
JSON representation
springboot + netty的一个demo实现网络协议自定义解析,可以实现多种网络请求
- Host: GitHub
- URL: https://github.com/haohaodayouxi/springboot_netty
- Owner: HaoHaoDaYouXi
- Created: 2024-06-11T06:35:30.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-18T09:12:50.000Z (5 months ago)
- Last Synced: 2024-10-10T11:43:26.077Z (about 1 month ago)
- Topics: netty, netty-client, netty-server, spring, spring-boot, springboot
- Language: Java
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# springboot_netty
springboot + netty的一个demo实现网络协议自定义解析,可以实现多种网络请求
## 启动步骤
先启动Server,在启动Client,项目端口application.yml的记得替换
### Server
```
AppBootstrap中的init方法中的 new MyServer().run();
注释new MyClient().run();
```### Client
```
AppBootstrap中的init方法中的 new MyClient().run();
注释new MyServer().run();
```