小编典典

Spring Boot:更改Web应用程序的端口

spring-boot

我目前正在尝试使用Spring Boot创建一个Web应用程序。我需要将应用程序托管到localhost:8081。如何更改端口?


阅读 327

收藏
2020-05-30

共1个答案

小编典典

实际上,您想要更改,server.port并且可以按照http://docs.spring.io/spring-
boot/docs/current/reference/htmlsingle/#boot-features-external-
config中所述的许多不同方式进行更改

例子:

  • 在您的application.properties中(在jar内或罐外)
  • 命令行

java -Dserver.port = $ PORT -jar target / demo-0.0.1-SNAPSHOT.jar

以及更多

2020-05-30