Spring Boot允許在不同的埠號上多次執行相同的應用程式。 在本章中,將詳細了解和學習這一點。 請注意,預設埠號為:8080
。
在application.properties
檔案中,屬性server.port
設定自定義埠號:
server.port = 9090
在application.yml檔案中,使用以下 -
server:
port: 9090
在application.properties 檔案中,server.port
屬性設定隨機埠號:
server.port = 0
在application.yml 檔案中,找到如下內容 -
server:
port: 0
註 - 如果啟動Spring Boot應用程式時server.port
指定值為0
,則Tomcat使用隨機埠號。