How to start Vert.x server from IntelliJ IDEA?
I’m using vertx 3.2.1 and it’s complaining about io.vertx.core.Starter. It’s deprecated now. So, one should use io.vertx.core.Launcher. This is an example of launching via intellij with the option of specifying a config JSON file: Main Class: io.vertx.core.Launcher VM Options: <up to you, or leave blank> Program Arguments: run com.app.verticle.MyVerticle -conf /path/to/my_config.json When using a logging … Read more