我刚开始使用lagom,尝试运行lagom示例,但是我在启动服务器时遇到了一个错误。
> runAll
[info] Starting Kafka
[info] Starting Cassandra
....Kafka Server closed unexpectedly.
......
[info] Cassandra server running at 127.0.0.1:4000
[error] p.c.s.NettyServer - Failed to listen for HTTP on /0.0.0.0:8000!
[error] ({.}/*:lagomServiceLocatorStart) Failed to start embedded
Service Locator or Service Gateway. Hint: Are ports 8000 and 9010
already in use?
[error] Total time: 32 s, completed Jan 28, 2017 1:19:03 AM
我已经更改了构建中的三个参数。sbt仍然没有更改
lagomServiceGatewayPort in ThisBuild := 9010
lagomServiceLocatorStart in ThisBuild := 9005
lagomServicesPortRange in ThisBuild := PortRange(40000, 45000)
你知道我做错了什么吗?
谢谢
2条答案
按热度按时间gojuced71#
您应该使用
lagomServiceLocatorPort
设置而不是lagomServiceLocatorStart
来更改端口请参见www.example.comhttp://www.lagomframework.com/documentation/1.2.x/java/ServiceLocator.html#default-port
lokaqttq2#
使用jdk-8对我很有效
不适用于任何更高版本,必须是一些兼容性问题,以调试更多