我已经创建了入门的lagom应用程序http://www.lagomframework.com/documentation/1.0.x/GettingStarted.html
系统正常运行。
[info] Service locator is running at http://localhost:8000
[info] Service gateway is running at http://localhost:9000
[info] application - Signalled start to ConductR
[info] application - Signalled start to ConductR
[info] Service hellostream-impl listening for HTTP on 0:0:0:0:0:0:0:0:26230
[info] Service helloworld-impl listening for HTTP on 0:0:0:0:0:0:0:0:24266
如何更改服务网关的主机和端口以侦听0.0.0.0:8080?
答案 0 :(得分:4)
主机名似乎没问题。可以从另一台机器访问该服务。 localhost
是硬编码的。
def serviceGatewayAddress: URI = {
new URI(s"http://localhost:${gateway.address.getPort}")
}
要配置服务网关的端口,请在主lagomServiceGatewayPort
中设置属性build.sbt
。
lagomServiceGatewayPort in ThisBuild := 8080