I've wrote a very simple Groovy MainApp with main(args).
When I launch it, the JVM exit directly ("End of JVM execution !").
import org.vertx.groovy.core.Vertx
class MainApp {
public static void main(String[] args) {
Vertx vertx = Vertx.newVertx()
vertx.createHttpServer().requestHandler{ request ->
println "A request has arrived on the server!"
}.listen(8080)
println "End of JVM execution !"
}
}
How to run correctly an embedded HTTP server with vert.x ?
Regards, Ronan.
Solution : Keep JVM alive, with some GUI stuff for example.
import groovy.swing.SwingBuilder
import javax.swing.WindowConstants
import org.vertx.groovy.core.Vertx
class MainApp {
public static void main(String[] args) {
Vertx vertx = Vertx.newVertx()
vertx.createHttpServer().requestHandler{ request -> println "A request has arrived on the server!" }.listen(8080)
new SwingBuilder().frame(
title:"A blocking frame",
defaultCloseOperation:WindowConstants.EXIT_ON_CLOSE,
visible:true, pack:true) {
label("The HTTP server will listen until this frame is close...")
}
println "End of JVM execution !"
}
}