Registry / web-framework / vertx-web

vertx-web

JSON →
library5.1.0javamavenunverified

Vert.x Web is a toolkit for building reactive web applications and microservices on top of the Vert.x toolkit.

<dependency> <groupId>io.vertx</groupId> <artifactId>vertx-web</artifactId> <version>5.1.0</version> </dependency>
INSTALL
IMPORT
SIG · VERTX-WEB
V
vertx-web
web-frameworkjavav5.1.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Router
io.vertx.ext.web.Router

Creates a simple HTTP server with a route handler.

import io.vertx.ext.web.Router; import io.vertx.core.Vertx; public class App { public static void main(String[] args) { Vertx vertx = Vertx.vertx(); Router router = Router.router(vertx); router.get("/hello").handler(ctx -> ctx.response().end("Hello World")); vertx.createHttpServer().requestHandler(router).listen(8080); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
5.1.0latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
vertx-web — mvn dependency:get vertx-web · libregistry