如何在Play 2.5.9中将默认端口从9000更改为9001?
尝试以下步骤
但这很有效 激活器运行-Dhttp.port = 9001 -Dhttp.address = 127.0.0.1
我们可以从application.conf更改它而不是从命令行指定端口吗?
答案 0 :(得分:11)
在某种程度上,您无法在重新加载模式application.conf
)中添加activator run
中的HTTP服务器设置。
在播放服务器启动时run
模式下,您的application.conf
尚未解决,但如果使用state
则可以正常使用。
如果您想在每次运行命令时避免提供端口,可以将其添加到build.sbt
中,如下所示。
PlayKeys.devSettings := Seq("play.server.http.port" -> "9001")
解释here
答案 1 :(得分:5)
从版本2.5开始,您可以在application.conf
中设置Play应用程序的端口,但只有在生产模式下运行应用程序时才会使用此设置。
play.server {
# These settings only apply when running in production mode (e.g. when using the stage/dist task)
# To apply these settings in dev mode see:
# https://www.playframework.com/documentation/2.5.x/ConfigFile#Using-with-the-run-command
# https://groups.google.com/d/msg/play-framework/-EE28jmb4Uw/MBRQvAhhCwAJ
# https://www.playframework.com/documentation/2.5.x/ProductionConfiguration
# ~~~~~
http {
address = 127.0.0.1
port = 9000
}
#https {
# address = 127.0.0.1
# port = 9000
#}
}
要在开发模式下设置端口,您必须坚持使用build.sbt
RP-后缀中的设置。
答案 2 :(得分:5)
使用sbt的最新播放版本(2.6.x),您也可以使用
sbt "run 9001"