1

我有一个 lagom 项目,我正在使用外部 cassandra,所以实际问题是当我在本地使用沙箱在导体上运行我的项目时,它无法检测到在我的本地单独运行的 cassandra。

错误:找不到 Cassandra 联系点,原因是:[cas_native] 没有联系点

我的 build.sbt 包含

lagomCassandraEnabled in ThisBuild := false
lagomUnmanagedServices in ThisBuild := Map("cas_native" -> "http://localhost:9042")
4

2 回答 2

0

根据官方文档https://www.lagomframework.com/documentation/current/scala/Cas ​​sandraServer.html,我发现您应该从“http://localhost:9042”更改为“tcp://localhost:9042” #:~:text=tcp%3A//localhost%3A9042

于 2021-12-11T14:41:41.290 回答
0

上述build.sbt配置仅适用于在开发模式下运行时。

有关为生产配置服务定位器的信息,请参阅 Lagom 文档:

于 2018-01-11T00:24:52.613 回答