How to enable auto redeploy in vertx when using in

2019-08-14 16:37发布

How to enable auto redeploy in vertx application code when running in intellij idea?

Intellij Settings for hot deployment of vertx application.

1条回答
该账号已被封号
2楼-- · 2019-08-14 16:46

create a Run configuration (Application), set the Main class to io.vertx.core.Launcher. In the Program arguments write: run your-verticle-fully-qualified-name --redeploy=**/*.class --launcher-class=io.vertx.core.Launcher. To trigger the redeployment, you need to make the project or the module explicitly (Build menu → Make project).

查看更多
登录 后发表回答