春季引导的 Tomcat 无法在特定端口启动。

huangapple go评论78阅读模式
英文:

Spring Boot Tomcat won't start on specific port

问题

我想使用Maven运行一个Spring Boot应用程序,但当我运行

mvn clean install spring-boot:run -Dserver.port=8888

Spring会在端口8080上运行。我应该如何在特定端口上运行Maven Spring Boot应用程序?

我使用的是Spring Boot 2.2.6版本。

英文:

I want to run a Spring Boot application using Maven but when I run

mvn clean install spring-boot:run -Dserver.port=8888

Spring runs on port 8080. How should I run a Maven Spring Boot application on a specific port?

I use Spring Boot version 2.2.6.

答案1

得分: 4

-Dserver.port没有传递给运行应用程序的JVM。

您需要使用

mvn clean install spring-boot:run -Dspring-boot.run.arguments=" --server.port=8888"

了解更多信息:
https://www.baeldung.com/spring-boot-command-line-arguments

英文:

-Dserver.port is not passed to the JVM running your app.

You have to use

mvn clean install spring-boot:run -Dspring-boot.run.arguments="--server.port=8888"

Read more about this:
https://www.baeldung.com/spring-boot-command-line-arguments

huangapple
  • 本文由 发表于 2020年4月9日 19:28:59
  • 转载请务必保留本文链接:https://go.coder-hub.com/61120130.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定