我在一个 JVM 中使用 HelloActor 启动了 akka 系统,并尝试从另一个 JVM 中的客户端向它发送消息。没有任何效果。我应该如何正确地做到这一点?这是代码:
简单服务器
package akkaSample.severalSystems
import akka.actor.{Props, Actor, ActorSystem}
import com.typesafe.config.ConfigFactory
class HelloActor extends Actor {
override def preStart(): Unit = {
println("Hello actor started")
}
def receive = {
case "mew" => println("I said mew")
case "hello" => println("hello back at you")
case "shutdown" => context.stop(self)
case _ => println("huh?")
}
}
object Server extends App {
val root = ConfigFactory.load()
val one = root.getConfig("systemOne")
val system = ActorSystem("HelloSystem", one)
val helloActor = system.actorOf(Props[HelloActor], "HelloActor")
println (system)
println("Remote application started.")
}
简单客户端
package akkaSample.severalSystems.client
import akka.actor.ActorSystem
import com.typesafe.config.ConfigFactory
import scala.util.control.Breaks._
class Client {
}
object Client extends App {
println("started")
val root = ConfigFactory.load()
val two = root.getConfig("systemTwo")
val system = ActorSystem("mySystem", two)
//What should be there to access HelloActor?
val selection = ...
selection ! "mew"
println(selection.anchorPath)
}
配置文件
systemOne {
akka {
remote {
enabled-transports = ["akka.remote.netty.tcp"]
netty.tcp {
port = 2552
}
}
}
}
systemTwo {
akka {
remote {
enabled-transports = ["akka.remote.netty.tcp"]
netty.tcp {
port = 2553
}
}
}
}
它假设Server在Client之前启动。println(selection.anchorPath)
现在我在尝试获得这样的演员时收到“akka://mySystem/deadLetters”( )system.actorSelection("akka://HelloSystem@127.0.0.1:2552/HelloActor")
那么如何在另一个 JVM 中从 ActorSystem 中检索演员?还是在我创建集群、指定种子、领导者等之前是不可能的?