我用 main(args) 编写了一个 Groovy MainApp。
当我启动它时,JVM 直接退出(“结束 JVM 执行!”)。
import org.vertx.groovy.core.Vertx
class MainApp {
public static void main(String[] args) {
Vertx vertx = VertxFactory.newVertx();
vertx.createHttpServer().requestHandler{ request ->
println "A request has arrived on the server!"
}.listen(8080)
println "End of JVM execution !"
}
}
如何正确运行带有 vert.x 的嵌入式HTTP 服务器?