This commit is contained in:
2026-05-07 18:42:25 +03:00
parent a1bd5a2b5f
commit 651d2a5d0c

View File

@@ -211,21 +211,6 @@ public class MainVerticle extends AbstractVerticle {
Router router = Router.router(vertx); Router router = Router.router(vertx);
router.route().handler(ctx -> {
long start = System.currentTimeMillis();
String method = ctx.request().method().name();
String path = ctx.request().path();
final String remoteIp = ctx.get("realClientIp") != null ?
ctx.get("realClientIp") :
ctx.request().remoteAddress().host();
ctx.addBodyEndHandler(v -> {
long duration = System.currentTimeMillis() - start;
log.info("{} {} - {} ms - {} - {}",
method, path, duration, ctx.response().getStatusCode(), remoteIp);
});
ctx.next();
});
router.route().handler(ctx -> { router.route().handler(ctx -> {
String path = ctx.request().path(); String path = ctx.request().path();
if (path != null && path.startsWith(config.pma.basePath + "/")) { if (path != null && path.startsWith(config.pma.basePath + "/")) {
@@ -260,6 +245,21 @@ public class MainVerticle extends AbstractVerticle {
} }
}); });
router.route().handler(ctx -> {
long start = System.currentTimeMillis();
String method = ctx.request().method().name();
String path = ctx.request().path();
final String remoteIp = ctx.get("realClientIp") != null ?
ctx.get("realClientIp") :
ctx.request().remoteAddress().host();
ctx.addBodyEndHandler(v -> {
long duration = System.currentTimeMillis() - start;
log.info("{} {} - {} ms - {} - {}",
method, path, duration, ctx.response().getStatusCode(), remoteIp);
});
ctx.next();
});
// ------ Раздаём Vue статику ------ // ------ Раздаём Vue статику ------
router.route("/assets/*").handler(StaticHandler.create("webroot/assets")); router.route("/assets/*").handler(StaticHandler.create("webroot/assets"));