如何配置jhipster应用程序在使用maven启动时在不同的端口上运行

时间:2015-08-12 19:07:37

标签: spring maven spring-boot jhipster

Jhipster docs说你必须

mvn -Pprod package

然后你可以用

执行生成的战争

java -jar jhipster-0.0.1-SNAPSHOT.war --spring.profiles.active=prod

您可以使用

配置服务器端口

java -jar jhipster-0.0.1-SNAPSHOT.war --spring.profiles.active=prod --server.port=9000

根据Spring Boot docs指定命令行参数优先于应用程序属性文件和YAML变体。

但是,尝试使用maven在不同的端口上运行应用程序

  

mvn -Pprod -Dserver.port=9000 spring-boot:run

仍然从application-prod.yml

中读取server.port

3 个答案:

答案 0 :(得分:10)

  

mvn -Pprod spring-boot:run -Drun.arguments =“ - server.port = 9000, - spring.profiles.active = prod”

答案 1 :(得分:0)

mvn spring-boot:run -Drun.arguments =" - server.port = 9090"

答案 2 :(得分:0)

对我来说,将SERVER_PORT作为env变量传递:

SERVER_PORT=9000 mvn spring-boot:run

Spring将os env变量SERVER_PORT转换为spring server.port配置。

https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html#boot-features-external-config-application-property-files