vertx hello world in intellij idea

Vertex is java’s micro framework for especial for api driven work.

Create a project

new Project->java ->java console application

then add framework support ->mvn

if you don’t know maven then learn more about maven

then add dependency

and

create a class MyFirstVerticle in src->main->java which is root directory

and goto edit configuration

+ application

name VertexRunner
Main Class: io.vertx.core.Starter
Program arguments: run MyFirstVerticle
working directory: [Your project location]

then click ok .

and run http://localhost:8080/

thanks to http://stackoverflow.com/questions/32205477/how-to-start-vert-x-server-from-intellij-idea

Leave a Reply

Your email address will not be published. Required fields are marked *