Skip to content

Vert.x in Action teaches you how to build responsive, resilient, and scalable JVM applications with Vert.x using well-established reactive design patterns.

Notifications You must be signed in to change notification settings

leelance/vertx-howto

Repository files navigation

Vertx 文档

Vert.x in Action teaches you how to build responsive, resilient, and scalable JVM applications with Vert.x using well-established reactive design patterns.

vertx第一个测试实例, hello world

vertx-router路由以及子路由

vertx支持restful风格url定义

    userRouter.get("/list").handler(service::list);
    userRouter.post("/info").handler(service::add);
    userRouter.put("/info").handler(service::update);
    userRouter.delete("/info/:userId").handler(service::delete);
    userRouter.get("/info/:userId").handler(service::detail);

vertx配置log4j2

vertx 异常定义, 并增加统一异常拦截处理

Vertx Config配置文件读取

mysql响应式客户端

mysql响应式客户端基于SqlTemplate实现

Redis vertx客户端

Mail vertx客户端

Metric Prometheus 客户端

junit 5单元测试

Vertx之MQTT客户端服务端发送

Vertx之Multi Verticle共享数据

rabbitMq消息发送

Vertx 集成Grpc

About

Vert.x in Action teaches you how to build responsive, resilient, and scalable JVM applications with Vert.x using well-established reactive design patterns.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages