Is there any way to run Vertx from within an IDE? I know I can create a server in a file and then call
vertx run server.java
from the command line, but is there a way to run the server.java file from within an IDE?
create a maven project as the manual says.
Then import the project as Maven project
Create a new launcher (Eclipse) using as main class
In the tab "Program Arguments" type: "run your.package.ServerVerticle -conf conf.json"
You can omit the conf.json if you don't have one, it's just an example to show you that you can put there any other option you'd put launching Vert.x from the command line.
PRO TIP: if your verticle is written in another language, use the prefix with the name of the language as follows:
And so forth.