小编典典

如何为 Spring Boot 应用程序配置端口

all

如何配置 Spring Boot 应用程序侦听的 TCP/IP 端口,使其不使用默认端口 8080。


阅读 167

收藏
2022-02-28

共1个答案

小编典典

文档中所述,使用jvm的命令行选项设置server.port为系统属性-Dserver.port=8090或添加application.properties``/src/main/resources/

server.port=8090

用于随机端口

server.port=0

同样添加application.yml_/src/main/resources/

server:
  port : 8090
2022-02-28