Open mountdreams opened 6 years ago
the verticle
`package com.example.vertx;
import io.vertx.core.AbstractVerticle;
public class MainVerticle extends AbstractVerticle {
@Override
public void start() throws Exception {
vertx.createHttpServer().requestHandler(req -> {
req.response()
.putHeader("content-type", "text/plain")
.end("test");
}).listen(8080);
System.out.println("HTTP server started on port 8080");
}
} `
I believe this is a duplicate of #117
For the record, which OS do you develop on?
i'm using windows 10
hello, i'm trying this plugin by making a simple verticle. first i tried with
mvn clean compile vertx:run
and verticle runs fine, then i turn it off with CTRL + C. when i try to runwith mvn clean compile vertx:run
again, appearsSEVERE: java.net.BindException: Address already in use: bind
when i try with
<redeploy>false</ redeploy>
this is not the case anymore, but i want to use redeploy feature.is this the expected behavior?