我如何在VScode中调试vertx代码?我试图在市场上找到任何vertx调试插件。我没有找到。你知道吗?请帮助我~!!谢谢。
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()); }
1条答案
按热度按时间vjhs03f71#
这个answer from another post工作起来就像一个魅力。
如果你有一个主垂直你想运行。添加下面的代码,使你的类之一,可执行的主类。
进口部分:
在main vertex中添加一个static方法: