溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

SpringBoot隨機(jī)端口啟動(dòng)怎么實(shí)現(xiàn)

發(fā)布時(shí)間:2022-04-02 16:25:58 來(lái)源:億速云 閱讀:300 作者:iii 欄目:大數(shù)據(jù)

這篇文章主要介紹了SpringBoot隨機(jī)端口啟動(dòng)怎么實(shí)現(xiàn)的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇SpringBoot隨機(jī)端口啟動(dòng)怎么實(shí)現(xiàn)文章都會(huì)有所收獲,下面我們一起來(lái)看看吧。

一、SpringBoot隨機(jī)端口

1.基礎(chǔ)介紹

  • 隨機(jī)端口可以自動(dòng)找指定范圍內(nèi)可使用的端口,不需要在配置文件中指定固定的啟動(dòng)端口

  • 例如在SpringBoot中假如需要運(yùn)行多個(gè)實(shí)例,則需要單獨(dú)修改配置文件比較麻煩

  • 隨機(jī)端口的原理就是與對(duì)應(yīng)socket端口建立連接,能連接則已被使用,反之未被使用

  • 隨機(jī)獲取的端口校驗(yàn)可使用之后通過(guò)System.setProperty("屬性名稱", port);寫(xiě)入內(nèi)存,然后就可以在配置文件中獲取到

  • 如果寫(xiě)入的名稱為server.port則不用在配置文件中指定端口,否則需要配置server.port=${屬性名稱}

  • 本實(shí)踐基于SpringBoot普通工程,直接創(chuàng)建項(xiàng)目腳手架即可

  • 【tip】例如在SpringCloud項(xiàng)目中服務(wù)提供者,可以使用隨機(jī)端口快速啟動(dòng)多個(gè)服務(wù),而不需要單獨(dú)修改配置文件再啟動(dòng)

2.實(shí)現(xiàn)步驟

創(chuàng)建ServerPortUtil .java端口工具類,使用socket連接指定端口,例如有以下條件

a. 指定端口范圍為8000-65535
b. 識(shí)別端口是否使用,已被使用則繼續(xù)隨機(jī)產(chǎn)生
c. 如果全部端口不可使用則直接拋出錯(cuò)誤,中斷運(yùn)行

import java.net.InetAddress;
import java.net.Socket;
import java.util.Random;

public class ServerPortUtil {
    private static final int MAX_PORT = 65535;
    private static final int MIN_PORT = 8000;

    public static String getAvailablePort() {
        Random random = new Random();
		// 最大嘗試次數(shù)為端口范圍
        int maxRetryCount = MAX_PORT - MIN_PORT;
        while (maxRetryCount > 0) {
        	// 指定范圍內(nèi)隨機(jī)端口,隨便寫(xiě)的算法,根據(jù)自己需要調(diào)整
            int port = random.nextInt(MAX_PORT - MIN_PORT) + MIN_PORT;
            boolean isUsed = isLocalePortUsing(port);
            if (!isUsed) {
                return String.valueOf(port);
            }
            --maxRetryCount;
        }
        System.out.println("系統(tǒng)暫無(wú)端口可用,運(yùn)行結(jié)束");
        System.exit(1);
        return null;
    }

    /**
     * 檢查給定端口是否可用
     *
     * @author tianxincode@163.com
     * @since 2020/10/14
     */
    public static boolean isLocalePortUsing(int port) {
        try {
            // 建立一個(gè)Socket連接, 如果該端口還在使用則返回true, 否則返回false, 127.0.0.1代表本機(jī)
            new Socket(InetAddress.getByName("127.0.0.1"), port);
            return true;
        } catch (Exception e) {
            // 異常說(shuō)明端口連接不上,端口能使用
        }
        return false;
    }
}

創(chuàng)建StartCommand.java命令類,調(diào)用隨機(jī)端口功能獲取端口信息,然后將端口信息寫(xiě)入運(yùn)行環(huán)境中
a. 如果傳入的參數(shù)包含了端口則使用指定的,否則使用自動(dòng)生成

import com.codecoord.randomport.util.ServerPortUtil;
import org.springframework.util.StringUtils;

public class StartCommand {
    /**
     * 端口屬性名稱,如果名稱為server.port則在配置文件中不用指定,否則需要指定為此處配置的名稱,如${auto.port}
     */
    private static final String SERVER_PORT = "auto.port";

    public StartCommand(String[] args) {
        boolean isServerPort = false;
        String serverPort = "";
        if (args != null) {
            for (String arg : args) {
                if (StringUtils.hasText(arg) && arg.startsWith("--server.port" )) {
                    isServerPort = true;
                    serverPort = arg;
                    break;
                }
            }
        }

        String port;
        if (isServerPort) {
           port = serverPort.split("=")[1];
        } else {
            port = ServerPortUtil.getAvailablePort();
        }
        System.out.println("Current project port is " + port);
        System.setProperty(SERVER_PORT, port);
    }
}

在啟動(dòng)類啟動(dòng)前向環(huán)境寫(xiě)入端口信息

import com.codecoord.randomport.config.StartCommand;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplicatio
public class SpringbootRandomPortApplication {
    public static void main(String[] args) {
        // 寫(xiě)入端口信息 
        new StartCommand(args);
        SpringApplication.run(SpringbootRandomPortApplication.class, args);
    }
}

在配置文件中指定端口為隨機(jī)生成的端口信息

server:
  # 隨機(jī)端口配置
  port: ${auto.port}

項(xiàng)目測(cè)試 正常啟動(dòng)項(xiàng)目,可以在控制臺(tái)看到啟動(dòng)的端口信息

SpringBoot隨機(jī)端口啟動(dòng)怎么實(shí)現(xiàn)

SpringBoot隨機(jī)端口啟動(dòng)怎么實(shí)現(xiàn)

二、SpringBoot多實(shí)例運(yùn)行

SpringBoot的多實(shí)例運(yùn)行在IDEA中配置如下

SpringBoot隨機(jī)端口啟動(dòng)怎么實(shí)現(xiàn)

SpringBoot隨機(jī)端口啟動(dòng)怎么實(shí)現(xiàn)

然后在啟動(dòng)上run/debug啟動(dòng)即可

關(guān)于“SpringBoot隨機(jī)端口啟動(dòng)怎么實(shí)現(xiàn)”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“SpringBoot隨機(jī)端口啟動(dòng)怎么實(shí)現(xiàn)”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI