debugging 有没有办法在vscode中调试vertx?

56lgkhnf  于 2023-10-24  发布在  Vscode
关注(0)|答案(1)|浏览(137)

我如何在VScode中调试vertx代码?我试图在市场上找到任何vertx调试插件。我没有找到。你知道吗?请帮助我~!!谢谢。

vjhs03f7

vjhs03f71#

这个answer from another post工作起来就像一个魅力。
如果你有一个主垂直你想运行。添加下面的代码,使你的类之一,可执行的主类。
进口部分:

import io.vertx.core.Launcher;

在main vertex中添加一个static方法:

public static void main(final String[] args) {
    Launcher.executeCommand("run", MyVerticle.class.getName());
}

相关问题