Skip to content

Instantly share code, notes, and snippets.

View binary-humming's full-sized avatar

binary-humming

View GitHub Profile
//Last route handler
router.route().handler(context -> {
System.out.println("failure");
HttpServerResponse response = context.response();
Route currentRoute = context.currentRoute();
if (currentRoute.getPath() == null) {
response.setStatusCode(HttpStatus.SC_NOT_FOUND);
response.end("Error");