Tôi đã viết một Groovy MainApp với chính (args).Làm thế nào để chạy vert.x được nhúng?
Khi tôi khởi chạy, thoát JVM trực tiếp ("Kết thúc thực thi 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 !"
}
}
Làm thế nào để chạy một cách chính xác một máy chủ HTTP nhúng với vert.x?
Đối mặt với nó quá, có vẻ như không có thời gian để bắt đầu ở chế độ không phải cụm và jvm dừng trước đó. Tôi đã giải quyết nó bằng 'TimeUnit.SECONDS.sleep (1);' cuối cùng: https://gist.github.com/yetanothercoder/21a2b47b686d902c5fee – yetanothercoder
@yetanothercoder bất kỳ lý do nào không sử dụng '.wait' /' .notify' ? – user7610