我正在使用2.2.3版本中的play框架。我可以配置播放以使用HTTPS并指定端口,如documentation中所述。如果我使用./nameOfMyApp -Dhttps.port=9443
它工作正常,但我无法在此模式下调试。
如果我查看旧的documentation of play 1.2.5,它说可以在application.conf中指定端口,如:
http.port=9000
https.port=9443
但如果我在2.2.3中这样做,它似乎就会被忽略。在我的应用程序目录中运行play debug run
后,我得到了
[info] play - 在/ 0上侦听HTTP:0:0:0:0:0:0:0:9000 ......
有什么想法吗?
真的没有人吗?
答案 0 :(得分:0)
尝试以这种方式运行:
activator run -Dhttps.port=9443