Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meethigher/vertx-examples
learn to use vertx
https://github.com/meethigher/vertx-examples
vertx vertx-eventbus vertx-web
Last synced: 21 days ago
JSON representation
learn to use vertx
- Host: GitHub
- URL: https://github.com/meethigher/vertx-examples
- Owner: meethigher
- Created: 2024-09-28T15:26:00.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-11-10T13:04:47.000Z (about 2 months ago)
- Last Synced: 2024-11-10T13:39:40.009Z (about 2 months ago)
- Topics: vertx, vertx-eventbus, vertx-web
- Language: Java
- Homepage: https://meethigher.top/blog/2024/io-intensive/
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[Documentation | Eclipse Vert.x](https://vertx.io/docs/)
案例说明
* Example1.java:vertx执行阻塞逻辑、事件回调逻辑、定时任务注册与取消,以及verticle和事件总线。
* Example2.java:vertx组建集群,以及集群事件总线的使用。
* Example3.java:vertx使用httpclient。通过1个线程,在10秒内完成对2000个耗时10秒的HTTP请求。
* Example4.java:http server
* Example5.java:vertx中提供的文件系统。
* Example6.java:vertx实现http反向代理,使用默认处理逻辑与自定义处理逻辑。
* Example7.java:vertx实现tcp服务,使用handler函数式接口,并记录使用中碰到的错误点。
* Example8.java:vertx实现tcp反向代理。该代码来自于vertx-sql-client。
* Example9.java:vertx实现http数据传输,并以tomcat为例解决实现上传时的一些[疑问](https://juejin.cn/post/7055851941837930533)。
* Example10.java:vertx实现tcp数据传输,并验证tcp双端产生和消费速率不匹配时的一些问题。
* Example11.java:vertx使用webclient