鍍金池/ 問答/Java  網(wǎng)絡安全/ About vertx, java.net.BindException: Add

About vertx, java.net.BindException: Address already in use

Now, I begin to learn vert.x.

At first, I tried to define a function that can work.

However, 當我第二次運行程序的時候, my current implementation gives me the following error:

三月 22, 2018 3:29:23 下午 io.vertx.core.http.impl.HttpServerImpl
嚴重: java.net.BindException: Address already in use

我希望第二次運行時,可以首先檢測下端口,如果端口被占用,先關閉端口

I could not find an answer from the documentation.

Source code

package com.project.service;

import io.vertx.core.AbstractVerticle;
import io.vertx.core.Vertx;
import io.vertx.core.VertxOptions;
import io.vertx.ext.web.Router;

import java.util.function.Consumer;

public class VerticleMain extends AbstractVerticle {


    @Override
    public void start() throws Exception {

        Router router = Router.router(vertx);

        router.route().handler(routingContext -> {
            routingContext.response()
                    .putHeader("content-type","text/html;charset=UTF-8")
                    .end("我的人設開始");
        });
        vertx.createHttpServer().requestHandler(router::accept).listen(8181);
    }

    public static void deployVertx() {
        String verticleId = VerticleMain.class.getName();
        VertxOptions options = new VertxOptions();
        Consumer<Vertx> runner = vertxStart -> {
            vertxStart.deployVerticle(verticleId);
        };
        Vertx vertx = Vertx.vertx(options);
        runner.accept(vertx);
    }

    public static void main(String[] args) {

        VerticleMain.deployVertx();
    }
}
回答
編輯回答
下墜

好像關閉端口占用,是要關閉占用端口的系統(tǒng)進程吧
你要先去查是哪個進程占用了該端口,然后在kill進程

其實你第一次運行完了關閉程序就可以了哇,何必搞的這么麻煩

2017年1月21日 18:01