英文:
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
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论